sowhat-types 2.0.220 → 2.0.221
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 +92 -82
- package/dist/index.d.ts +92 -82
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -689,87 +689,6 @@ interface FullLeadResponse {
|
|
|
689
689
|
aiSummary: UserAiSummaryResponse | null;
|
|
690
690
|
}
|
|
691
691
|
|
|
692
|
-
interface LeadResponse {
|
|
693
|
-
userId: string;
|
|
694
|
-
initialAmount: number;
|
|
695
|
-
need: ProjectNeedEnum;
|
|
696
|
-
financialProduct: FinancialProductEnum | null;
|
|
697
|
-
profession: ProfessionEnum | null;
|
|
698
|
-
birthYear: number | null;
|
|
699
|
-
updatedAt: Date;
|
|
700
|
-
createdAt: Date;
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
interface LeadsResponse {
|
|
704
|
-
items: LeadResponse[];
|
|
705
|
-
nextCursor: string | null;
|
|
706
|
-
total: number;
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
interface LegalDocumentResponse {
|
|
710
|
-
type: LegalDocumentTypeEnum;
|
|
711
|
-
content: string;
|
|
712
|
-
version: string;
|
|
713
|
-
}
|
|
714
|
-
|
|
715
|
-
interface PowensConnectionResponse {
|
|
716
|
-
id: string;
|
|
717
|
-
state: PowensConnectionStateEnum | null;
|
|
718
|
-
errorMessage: string | null;
|
|
719
|
-
accounts: BankAccountResponse[];
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
interface PowensConnectionDeletedResponse {
|
|
723
|
-
deleted: boolean;
|
|
724
|
-
errorMessage: string | null;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
interface PowensManageWebviewResponse {
|
|
728
|
-
url: string;
|
|
729
|
-
createdAt: Date;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
interface PowensReconnectWebviewResponse {
|
|
733
|
-
url: string;
|
|
734
|
-
createdAt: Date;
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
interface PowensConnectWebviewResponse {
|
|
738
|
-
id: string;
|
|
739
|
-
url: string;
|
|
740
|
-
createdAt: Date;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
interface ProResponse {
|
|
744
|
-
id: string;
|
|
745
|
-
clerkId: string;
|
|
746
|
-
firstName: string | null;
|
|
747
|
-
lastName: string | null;
|
|
748
|
-
role: string | null;
|
|
749
|
-
presentation: string | null;
|
|
750
|
-
companyImage: string | null;
|
|
751
|
-
companyName: string | null;
|
|
752
|
-
companyDescription: string | null;
|
|
753
|
-
sirenId: string | null;
|
|
754
|
-
amfId: string | null;
|
|
755
|
-
oriasId: string | null;
|
|
756
|
-
updatedAt: Date;
|
|
757
|
-
createdAt: Date;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
interface ProjectResponse {
|
|
761
|
-
id: string;
|
|
762
|
-
status: ProjectStatusEnum;
|
|
763
|
-
option: ProjectOptionEnum;
|
|
764
|
-
initialAmount: number;
|
|
765
|
-
monthlyAmount: number;
|
|
766
|
-
need: ProjectNeedEnum;
|
|
767
|
-
financialProduct: FinancialProductEnum | null;
|
|
768
|
-
note: string | null;
|
|
769
|
-
updatedAt: Date;
|
|
770
|
-
createdAt: Date;
|
|
771
|
-
}
|
|
772
|
-
|
|
773
692
|
type AiAdvisorStatusResponse = "ok" | "risk_detected";
|
|
774
693
|
|
|
775
694
|
interface AiAdvisorSyntheseResponse {
|
|
@@ -856,6 +775,97 @@ interface UserProfileResponse {
|
|
|
856
775
|
updatedAt: Date;
|
|
857
776
|
}
|
|
858
777
|
|
|
778
|
+
interface LeadAiSummaryResponse {
|
|
779
|
+
status: AiAdvisorStatusResponse | null;
|
|
780
|
+
note: number | null;
|
|
781
|
+
optimisationLevel: number | null;
|
|
782
|
+
product: string | null;
|
|
783
|
+
version: number;
|
|
784
|
+
fullResponse: AiAdvisorResponse | null;
|
|
785
|
+
lastUpdatedAt: Date;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
interface LeadResponse {
|
|
789
|
+
userId: string;
|
|
790
|
+
initialAmount: number;
|
|
791
|
+
need: ProjectNeedEnum;
|
|
792
|
+
financialProduct: FinancialProductEnum | null;
|
|
793
|
+
profession: ProfessionEnum | null;
|
|
794
|
+
birthYear: number | null;
|
|
795
|
+
updatedAt: Date;
|
|
796
|
+
createdAt: Date;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
interface LeadsResponse {
|
|
800
|
+
items: LeadResponse[];
|
|
801
|
+
nextCursor: string | null;
|
|
802
|
+
total: number;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
interface LegalDocumentResponse {
|
|
806
|
+
type: LegalDocumentTypeEnum;
|
|
807
|
+
content: string;
|
|
808
|
+
version: string;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
interface PowensConnectionResponse {
|
|
812
|
+
id: string;
|
|
813
|
+
state: PowensConnectionStateEnum | null;
|
|
814
|
+
errorMessage: string | null;
|
|
815
|
+
accounts: BankAccountResponse[];
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
interface PowensConnectionDeletedResponse {
|
|
819
|
+
deleted: boolean;
|
|
820
|
+
errorMessage: string | null;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
interface PowensManageWebviewResponse {
|
|
824
|
+
url: string;
|
|
825
|
+
createdAt: Date;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
interface PowensReconnectWebviewResponse {
|
|
829
|
+
url: string;
|
|
830
|
+
createdAt: Date;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
interface PowensConnectWebviewResponse {
|
|
834
|
+
id: string;
|
|
835
|
+
url: string;
|
|
836
|
+
createdAt: Date;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
interface ProResponse {
|
|
840
|
+
id: string;
|
|
841
|
+
clerkId: string;
|
|
842
|
+
firstName: string | null;
|
|
843
|
+
lastName: string | null;
|
|
844
|
+
role: string | null;
|
|
845
|
+
presentation: string | null;
|
|
846
|
+
companyImage: string | null;
|
|
847
|
+
companyName: string | null;
|
|
848
|
+
companyDescription: string | null;
|
|
849
|
+
sirenId: string | null;
|
|
850
|
+
amfId: string | null;
|
|
851
|
+
oriasId: string | null;
|
|
852
|
+
updatedAt: Date;
|
|
853
|
+
createdAt: Date;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
interface ProjectResponse {
|
|
857
|
+
id: string;
|
|
858
|
+
status: ProjectStatusEnum;
|
|
859
|
+
option: ProjectOptionEnum;
|
|
860
|
+
initialAmount: number;
|
|
861
|
+
monthlyAmount: number;
|
|
862
|
+
need: ProjectNeedEnum;
|
|
863
|
+
financialProduct: FinancialProductEnum | null;
|
|
864
|
+
note: string | null;
|
|
865
|
+
updatedAt: Date;
|
|
866
|
+
createdAt: Date;
|
|
867
|
+
}
|
|
868
|
+
|
|
859
869
|
interface UserAssetsBalancesResponse {
|
|
860
870
|
total: number;
|
|
861
871
|
realEstate: number;
|
|
@@ -941,4 +951,4 @@ declare function getProjectNeedKey(label: string): ProjectNeedEnum | null;
|
|
|
941
951
|
|
|
942
952
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
|
943
953
|
|
|
944
|
-
export { type AiAdvisorResponse, type AiAdvisorStatusResponse, type AiAdvisorSyntheseResponse, type AnonymousUserResponse, type AnonymousUsersResponse, AssetTypeEnum, AvailableCryptocurrencySymbolEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, BudgetTypeEnum, type CreateMobilityInput, type CreateProjectInput, type CreateRealEstateInput, type CryptocurrencyAssetDeletedResponse, type CryptocurrencyAssetResponse, type CryptocurrencyResponse, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, type FinancialProduct, FinancialProductEnum, FinancialProducts, type FinancialSummariesFiltersInput, type FullLeadResponse, type GetLeadsQueryInput, type HouseholdSalaryRange, HouseholdSalaryRangeEnum, HouseholdSalaryRanges, LIVES_OUTSIDE_FRANCE, type LeadResponse, type LeadsResponse, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MaritalStatus, MaritalStatusEnum, MartialStatuses, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PersonalNetWorthRange, PersonalNetWorthRangeEnum, PersonalNetWorthRanges, type PersonalSalaryRange, PersonalSalaryRangeEnum, PersonalSalaryRanges, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProResponse, type Profession, ProfessionEnum, type ProfessionStatus, ProfessionStatusEnum, ProfessionStatusList, ProfessionsList, type ProjectNeed, ProjectNeedEnum, ProjectNeeds, ProjectOptionEnum, type ProjectResponse, ProjectStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, SupportedCurrencyExchangesEnum, SupportedCurrencySymbolsEnum, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProInput, type UpdateProjectInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAiSummaryResponse, UserAiSummaryStatusEnum, type UserAssetsBalancesResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, UserStatusEnum, getFinancialProductKey, getFinancialProductLabel, getHouseholdSalaryRangeKey, getHouseholdSalaryRangeLabel, getMaritalStatusKey, getMaritalStatusLabel, getPersonalNetWorthRangeKey, getPersonalNetWorthRangeLabel, getPersonalSalaryRangeKey, getPersonalSalaryRangeLabel, getProfessionKey, getProfessionLabel, getProfessionStatusKey, getProfessionStatusLabel, getProjectNeedKey, getProjectNeedProLabel, getProjectNeedUserLabel };
|
|
954
|
+
export { type AiAdvisorResponse, type AiAdvisorStatusResponse, type AiAdvisorSyntheseResponse, type AnonymousUserResponse, type AnonymousUsersResponse, AssetTypeEnum, AvailableCryptocurrencySymbolEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, BudgetTypeEnum, type CreateMobilityInput, type CreateProjectInput, type CreateRealEstateInput, type CryptocurrencyAssetDeletedResponse, type CryptocurrencyAssetResponse, type CryptocurrencyResponse, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, type FinancialProduct, FinancialProductEnum, FinancialProducts, type FinancialSummariesFiltersInput, type FullLeadResponse, type GetLeadsQueryInput, type HouseholdSalaryRange, HouseholdSalaryRangeEnum, HouseholdSalaryRanges, LIVES_OUTSIDE_FRANCE, type LeadAiSummaryResponse, type LeadResponse, type LeadsResponse, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MaritalStatus, MaritalStatusEnum, MartialStatuses, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PersonalNetWorthRange, PersonalNetWorthRangeEnum, PersonalNetWorthRanges, type PersonalSalaryRange, PersonalSalaryRangeEnum, PersonalSalaryRanges, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProResponse, type Profession, ProfessionEnum, type ProfessionStatus, ProfessionStatusEnum, ProfessionStatusList, ProfessionsList, type ProjectNeed, ProjectNeedEnum, ProjectNeeds, ProjectOptionEnum, type ProjectResponse, ProjectStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, SupportedCurrencyExchangesEnum, SupportedCurrencySymbolsEnum, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProInput, type UpdateProjectInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAiSummaryResponse, UserAiSummaryStatusEnum, type UserAssetsBalancesResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, UserStatusEnum, getFinancialProductKey, getFinancialProductLabel, getHouseholdSalaryRangeKey, getHouseholdSalaryRangeLabel, getMaritalStatusKey, getMaritalStatusLabel, getPersonalNetWorthRangeKey, getPersonalNetWorthRangeLabel, getPersonalSalaryRangeKey, getPersonalSalaryRangeLabel, getProfessionKey, getProfessionLabel, getProfessionStatusKey, getProfessionStatusLabel, getProjectNeedKey, getProjectNeedProLabel, getProjectNeedUserLabel };
|
package/dist/index.d.ts
CHANGED
|
@@ -689,87 +689,6 @@ interface FullLeadResponse {
|
|
|
689
689
|
aiSummary: UserAiSummaryResponse | null;
|
|
690
690
|
}
|
|
691
691
|
|
|
692
|
-
interface LeadResponse {
|
|
693
|
-
userId: string;
|
|
694
|
-
initialAmount: number;
|
|
695
|
-
need: ProjectNeedEnum;
|
|
696
|
-
financialProduct: FinancialProductEnum | null;
|
|
697
|
-
profession: ProfessionEnum | null;
|
|
698
|
-
birthYear: number | null;
|
|
699
|
-
updatedAt: Date;
|
|
700
|
-
createdAt: Date;
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
interface LeadsResponse {
|
|
704
|
-
items: LeadResponse[];
|
|
705
|
-
nextCursor: string | null;
|
|
706
|
-
total: number;
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
interface LegalDocumentResponse {
|
|
710
|
-
type: LegalDocumentTypeEnum;
|
|
711
|
-
content: string;
|
|
712
|
-
version: string;
|
|
713
|
-
}
|
|
714
|
-
|
|
715
|
-
interface PowensConnectionResponse {
|
|
716
|
-
id: string;
|
|
717
|
-
state: PowensConnectionStateEnum | null;
|
|
718
|
-
errorMessage: string | null;
|
|
719
|
-
accounts: BankAccountResponse[];
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
interface PowensConnectionDeletedResponse {
|
|
723
|
-
deleted: boolean;
|
|
724
|
-
errorMessage: string | null;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
interface PowensManageWebviewResponse {
|
|
728
|
-
url: string;
|
|
729
|
-
createdAt: Date;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
interface PowensReconnectWebviewResponse {
|
|
733
|
-
url: string;
|
|
734
|
-
createdAt: Date;
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
interface PowensConnectWebviewResponse {
|
|
738
|
-
id: string;
|
|
739
|
-
url: string;
|
|
740
|
-
createdAt: Date;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
interface ProResponse {
|
|
744
|
-
id: string;
|
|
745
|
-
clerkId: string;
|
|
746
|
-
firstName: string | null;
|
|
747
|
-
lastName: string | null;
|
|
748
|
-
role: string | null;
|
|
749
|
-
presentation: string | null;
|
|
750
|
-
companyImage: string | null;
|
|
751
|
-
companyName: string | null;
|
|
752
|
-
companyDescription: string | null;
|
|
753
|
-
sirenId: string | null;
|
|
754
|
-
amfId: string | null;
|
|
755
|
-
oriasId: string | null;
|
|
756
|
-
updatedAt: Date;
|
|
757
|
-
createdAt: Date;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
interface ProjectResponse {
|
|
761
|
-
id: string;
|
|
762
|
-
status: ProjectStatusEnum;
|
|
763
|
-
option: ProjectOptionEnum;
|
|
764
|
-
initialAmount: number;
|
|
765
|
-
monthlyAmount: number;
|
|
766
|
-
need: ProjectNeedEnum;
|
|
767
|
-
financialProduct: FinancialProductEnum | null;
|
|
768
|
-
note: string | null;
|
|
769
|
-
updatedAt: Date;
|
|
770
|
-
createdAt: Date;
|
|
771
|
-
}
|
|
772
|
-
|
|
773
692
|
type AiAdvisorStatusResponse = "ok" | "risk_detected";
|
|
774
693
|
|
|
775
694
|
interface AiAdvisorSyntheseResponse {
|
|
@@ -856,6 +775,97 @@ interface UserProfileResponse {
|
|
|
856
775
|
updatedAt: Date;
|
|
857
776
|
}
|
|
858
777
|
|
|
778
|
+
interface LeadAiSummaryResponse {
|
|
779
|
+
status: AiAdvisorStatusResponse | null;
|
|
780
|
+
note: number | null;
|
|
781
|
+
optimisationLevel: number | null;
|
|
782
|
+
product: string | null;
|
|
783
|
+
version: number;
|
|
784
|
+
fullResponse: AiAdvisorResponse | null;
|
|
785
|
+
lastUpdatedAt: Date;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
interface LeadResponse {
|
|
789
|
+
userId: string;
|
|
790
|
+
initialAmount: number;
|
|
791
|
+
need: ProjectNeedEnum;
|
|
792
|
+
financialProduct: FinancialProductEnum | null;
|
|
793
|
+
profession: ProfessionEnum | null;
|
|
794
|
+
birthYear: number | null;
|
|
795
|
+
updatedAt: Date;
|
|
796
|
+
createdAt: Date;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
interface LeadsResponse {
|
|
800
|
+
items: LeadResponse[];
|
|
801
|
+
nextCursor: string | null;
|
|
802
|
+
total: number;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
interface LegalDocumentResponse {
|
|
806
|
+
type: LegalDocumentTypeEnum;
|
|
807
|
+
content: string;
|
|
808
|
+
version: string;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
interface PowensConnectionResponse {
|
|
812
|
+
id: string;
|
|
813
|
+
state: PowensConnectionStateEnum | null;
|
|
814
|
+
errorMessage: string | null;
|
|
815
|
+
accounts: BankAccountResponse[];
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
interface PowensConnectionDeletedResponse {
|
|
819
|
+
deleted: boolean;
|
|
820
|
+
errorMessage: string | null;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
interface PowensManageWebviewResponse {
|
|
824
|
+
url: string;
|
|
825
|
+
createdAt: Date;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
interface PowensReconnectWebviewResponse {
|
|
829
|
+
url: string;
|
|
830
|
+
createdAt: Date;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
interface PowensConnectWebviewResponse {
|
|
834
|
+
id: string;
|
|
835
|
+
url: string;
|
|
836
|
+
createdAt: Date;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
interface ProResponse {
|
|
840
|
+
id: string;
|
|
841
|
+
clerkId: string;
|
|
842
|
+
firstName: string | null;
|
|
843
|
+
lastName: string | null;
|
|
844
|
+
role: string | null;
|
|
845
|
+
presentation: string | null;
|
|
846
|
+
companyImage: string | null;
|
|
847
|
+
companyName: string | null;
|
|
848
|
+
companyDescription: string | null;
|
|
849
|
+
sirenId: string | null;
|
|
850
|
+
amfId: string | null;
|
|
851
|
+
oriasId: string | null;
|
|
852
|
+
updatedAt: Date;
|
|
853
|
+
createdAt: Date;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
interface ProjectResponse {
|
|
857
|
+
id: string;
|
|
858
|
+
status: ProjectStatusEnum;
|
|
859
|
+
option: ProjectOptionEnum;
|
|
860
|
+
initialAmount: number;
|
|
861
|
+
monthlyAmount: number;
|
|
862
|
+
need: ProjectNeedEnum;
|
|
863
|
+
financialProduct: FinancialProductEnum | null;
|
|
864
|
+
note: string | null;
|
|
865
|
+
updatedAt: Date;
|
|
866
|
+
createdAt: Date;
|
|
867
|
+
}
|
|
868
|
+
|
|
859
869
|
interface UserAssetsBalancesResponse {
|
|
860
870
|
total: number;
|
|
861
871
|
realEstate: number;
|
|
@@ -941,4 +951,4 @@ declare function getProjectNeedKey(label: string): ProjectNeedEnum | null;
|
|
|
941
951
|
|
|
942
952
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
|
943
953
|
|
|
944
|
-
export { type AiAdvisorResponse, type AiAdvisorStatusResponse, type AiAdvisorSyntheseResponse, type AnonymousUserResponse, type AnonymousUsersResponse, AssetTypeEnum, AvailableCryptocurrencySymbolEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, BudgetTypeEnum, type CreateMobilityInput, type CreateProjectInput, type CreateRealEstateInput, type CryptocurrencyAssetDeletedResponse, type CryptocurrencyAssetResponse, type CryptocurrencyResponse, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, type FinancialProduct, FinancialProductEnum, FinancialProducts, type FinancialSummariesFiltersInput, type FullLeadResponse, type GetLeadsQueryInput, type HouseholdSalaryRange, HouseholdSalaryRangeEnum, HouseholdSalaryRanges, LIVES_OUTSIDE_FRANCE, type LeadResponse, type LeadsResponse, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MaritalStatus, MaritalStatusEnum, MartialStatuses, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PersonalNetWorthRange, PersonalNetWorthRangeEnum, PersonalNetWorthRanges, type PersonalSalaryRange, PersonalSalaryRangeEnum, PersonalSalaryRanges, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProResponse, type Profession, ProfessionEnum, type ProfessionStatus, ProfessionStatusEnum, ProfessionStatusList, ProfessionsList, type ProjectNeed, ProjectNeedEnum, ProjectNeeds, ProjectOptionEnum, type ProjectResponse, ProjectStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, SupportedCurrencyExchangesEnum, SupportedCurrencySymbolsEnum, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProInput, type UpdateProjectInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAiSummaryResponse, UserAiSummaryStatusEnum, type UserAssetsBalancesResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, UserStatusEnum, getFinancialProductKey, getFinancialProductLabel, getHouseholdSalaryRangeKey, getHouseholdSalaryRangeLabel, getMaritalStatusKey, getMaritalStatusLabel, getPersonalNetWorthRangeKey, getPersonalNetWorthRangeLabel, getPersonalSalaryRangeKey, getPersonalSalaryRangeLabel, getProfessionKey, getProfessionLabel, getProfessionStatusKey, getProfessionStatusLabel, getProjectNeedKey, getProjectNeedProLabel, getProjectNeedUserLabel };
|
|
954
|
+
export { type AiAdvisorResponse, type AiAdvisorStatusResponse, type AiAdvisorSyntheseResponse, type AnonymousUserResponse, type AnonymousUsersResponse, AssetTypeEnum, AvailableCryptocurrencySymbolEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, BudgetTypeEnum, type CreateMobilityInput, type CreateProjectInput, type CreateRealEstateInput, type CryptocurrencyAssetDeletedResponse, type CryptocurrencyAssetResponse, type CryptocurrencyResponse, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, type FinancialProduct, FinancialProductEnum, FinancialProducts, type FinancialSummariesFiltersInput, type FullLeadResponse, type GetLeadsQueryInput, type HouseholdSalaryRange, HouseholdSalaryRangeEnum, HouseholdSalaryRanges, LIVES_OUTSIDE_FRANCE, type LeadAiSummaryResponse, type LeadResponse, type LeadsResponse, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MaritalStatus, MaritalStatusEnum, MartialStatuses, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PersonalNetWorthRange, PersonalNetWorthRangeEnum, PersonalNetWorthRanges, type PersonalSalaryRange, PersonalSalaryRangeEnum, PersonalSalaryRanges, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProResponse, type Profession, ProfessionEnum, type ProfessionStatus, ProfessionStatusEnum, ProfessionStatusList, ProfessionsList, type ProjectNeed, ProjectNeedEnum, ProjectNeeds, ProjectOptionEnum, type ProjectResponse, ProjectStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, SupportedCurrencyExchangesEnum, SupportedCurrencySymbolsEnum, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProInput, type UpdateProjectInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAiSummaryResponse, UserAiSummaryStatusEnum, type UserAssetsBalancesResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, UserStatusEnum, getFinancialProductKey, getFinancialProductLabel, getHouseholdSalaryRangeKey, getHouseholdSalaryRangeLabel, getMaritalStatusKey, getMaritalStatusLabel, getPersonalNetWorthRangeKey, getPersonalNetWorthRangeLabel, getPersonalSalaryRangeKey, getPersonalSalaryRangeLabel, getProfessionKey, getProfessionLabel, getProfessionStatusKey, getProfessionStatusLabel, getProjectNeedKey, getProjectNeedProLabel, getProjectNeedUserLabel };
|