sowhat-types 2.0.262 → 2.0.264
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 +34 -19
- package/dist/index.d.ts +34 -19
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -491,6 +491,7 @@ interface UpdateProInput {
|
|
|
491
491
|
certifications?: ProCertificationEnum[] | null;
|
|
492
492
|
sirenId?: string | null;
|
|
493
493
|
oriasId?: string | null;
|
|
494
|
+
regulation?: string | null;
|
|
494
495
|
notificationEmail?: string | null;
|
|
495
496
|
}
|
|
496
497
|
|
|
@@ -500,8 +501,9 @@ interface ManualInitializeProInput {
|
|
|
500
501
|
email: string;
|
|
501
502
|
companyWebsite: string;
|
|
502
503
|
companyName: string;
|
|
503
|
-
oriasId: string;
|
|
504
|
+
oriasId: string | null;
|
|
504
505
|
sirenId: string;
|
|
506
|
+
regulation: string | null;
|
|
505
507
|
}
|
|
506
508
|
|
|
507
509
|
interface CreateProLeadsAlertInput {
|
|
@@ -770,6 +772,23 @@ interface RealEstateResponse {
|
|
|
770
772
|
createdAt: Date;
|
|
771
773
|
}
|
|
772
774
|
|
|
775
|
+
interface UserAssetsBalancesResponse {
|
|
776
|
+
total: number;
|
|
777
|
+
realEstate: number;
|
|
778
|
+
mobility: number;
|
|
779
|
+
otherAsset: number;
|
|
780
|
+
cryptocurrency: number;
|
|
781
|
+
currency: AvailableCurrencyEnum;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
interface UserAssetsResponse {
|
|
785
|
+
realEstateAssets: RealEstateResponse[];
|
|
786
|
+
mobilityAssets: MobilityResponse[];
|
|
787
|
+
cryptocurrencyAssets: CryptocurrencyAssetResponse[];
|
|
788
|
+
otherAssets: OtherAssetResponse[];
|
|
789
|
+
balances: UserAssetsBalancesResponse;
|
|
790
|
+
}
|
|
791
|
+
|
|
773
792
|
interface UserAuthenticatedResponse {
|
|
774
793
|
authenticated: boolean;
|
|
775
794
|
errorMessage: string | null;
|
|
@@ -786,6 +805,12 @@ interface ProSubscriptionSessionResponse {
|
|
|
786
805
|
errorMessage: string | null;
|
|
787
806
|
}
|
|
788
807
|
|
|
808
|
+
interface MonthlyMetricEntry {
|
|
809
|
+
year: number;
|
|
810
|
+
month: number;
|
|
811
|
+
count: number | null;
|
|
812
|
+
}
|
|
813
|
+
|
|
789
814
|
type AiAdvisorStatusResponse = "ok" | "risk_detected";
|
|
790
815
|
|
|
791
816
|
interface AiAdvisorSyntheseResponse {
|
|
@@ -1015,6 +1040,12 @@ interface LegalDocumentResponse {
|
|
|
1015
1040
|
version: string;
|
|
1016
1041
|
}
|
|
1017
1042
|
|
|
1043
|
+
interface ProMonitoringResponse {
|
|
1044
|
+
acceptedOffersPerMonth: MonthlyMetricEntry[];
|
|
1045
|
+
offersSentPerMonth: MonthlyMetricEntry[];
|
|
1046
|
+
currentMonthlyQuota: number;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1018
1049
|
interface ProResponse {
|
|
1019
1050
|
id: string;
|
|
1020
1051
|
clerkId: string;
|
|
@@ -1027,6 +1058,7 @@ interface ProResponse {
|
|
|
1027
1058
|
companyDescription: string | null;
|
|
1028
1059
|
sirenId: string | null;
|
|
1029
1060
|
oriasId: string | null;
|
|
1061
|
+
regulation: string | null;
|
|
1030
1062
|
certifications: ProCertificationEnum[];
|
|
1031
1063
|
status: ProStatusEnum;
|
|
1032
1064
|
notificationEmail: string | null;
|
|
@@ -1115,23 +1147,6 @@ interface ProjectResponse {
|
|
|
1115
1147
|
createdAt: Date;
|
|
1116
1148
|
}
|
|
1117
1149
|
|
|
1118
|
-
interface UserAssetsBalancesResponse {
|
|
1119
|
-
total: number;
|
|
1120
|
-
realEstate: number;
|
|
1121
|
-
mobility: number;
|
|
1122
|
-
otherAsset: number;
|
|
1123
|
-
cryptocurrency: number;
|
|
1124
|
-
currency: AvailableCurrencyEnum;
|
|
1125
|
-
}
|
|
1126
|
-
|
|
1127
|
-
interface UserAssetsResponse {
|
|
1128
|
-
realEstateAssets: RealEstateResponse[];
|
|
1129
|
-
mobilityAssets: MobilityResponse[];
|
|
1130
|
-
cryptocurrencyAssets: CryptocurrencyAssetResponse[];
|
|
1131
|
-
otherAssets: OtherAssetResponse[];
|
|
1132
|
-
balances: UserAssetsBalancesResponse;
|
|
1133
|
-
}
|
|
1134
|
-
|
|
1135
1150
|
interface Department {
|
|
1136
1151
|
code: string;
|
|
1137
1152
|
departmentName: string;
|
|
@@ -1216,4 +1231,4 @@ declare function getProjectNeedKey(label: string): ProjectNeedEnum | null;
|
|
|
1216
1231
|
|
|
1217
1232
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
|
1218
1233
|
|
|
1219
|
-
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 CreateCommercialOfferInput, type CreateMobilityInput, type CreateProLeadsAlertInput, type CreateProSubscriptionSessionInput, type CreateProjectInput, type CreateRealEstateInput, type CryptocurrencyAssetDeletedResponse, type CryptocurrencyAssetResponse, type CryptocurrencyResponse, type Department, DepartmentsList, 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 ManualInitializeProInput, type MaritalStatus, MaritalStatusEnum, MartialStatuses, type MatchingLeadsResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, OfferStatusEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PersonalNetWorthRange, PersonalNetWorthRangeEnum, PersonalNetWorthRanges, type PersonalSalaryRange, PersonalSalaryRangeEnum, PersonalSalaryRanges, PhoneVerificationStatusEnum, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProBillingPortalSessionResponse, type ProCertification, ProCertificationEnum, ProCertifications, type ProCommercialOfferLeadResponse, type ProCommercialOfferResponse, type ProLeadsAlertResponse, type ProMonthlyQuotaResponse, type ProResponse, ProStatusEnum, type ProSubscriptionSessionResponse, type ProUserLikeLeadResponse, type ProUserLikeResponse, type Profession, ProfessionEnum, type ProfessionStatus, ProfessionStatusEnum, ProfessionStatusList, ProfessionsList, type ProjectNeed, ProjectNeedEnum, ProjectNeeds, ProjectOptionEnum, type ProjectResponse, ProjectStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, type SendPhoneVerificationInput, type SendPhoneVerificationResponse, SupportedCurrencyExchangesEnum, SupportedCurrencySymbolsEnum, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateCommercialOfferAsProInput, type UpdateCommercialOfferAsUserInput, type UpdateCommercialOfferInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProInput, type UpdateProLeadsAlertInput, type UpdateProjectInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAiSummaryResponse, UserAiSummaryStatusEnum, type UserAssetsBalancesResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserCommercialOfferResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, UserStatusEnum, type VerifyPhoneCodeInput, type VerifyPhoneCodeResponse, getFinancialProductKey, getFinancialProductLabel, getHouseholdSalaryRangeKey, getHouseholdSalaryRangeLabel, getMaritalStatusKey, getMaritalStatusLabel, getPersonalNetWorthRangeKey, getPersonalNetWorthRangeLabel, getPersonalSalaryRangeKey, getPersonalSalaryRangeLabel, getProCertificationByKey, getProCertificationByLabelOrDescription, getProfessionKey, getProfessionLabel, getProfessionStatusKey, getProfessionStatusLabel, getProjectNeedKey, getProjectNeedProLabel, getProjectNeedUserLabel };
|
|
1234
|
+
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 CreateCommercialOfferInput, type CreateMobilityInput, type CreateProLeadsAlertInput, type CreateProSubscriptionSessionInput, type CreateProjectInput, type CreateRealEstateInput, type CryptocurrencyAssetDeletedResponse, type CryptocurrencyAssetResponse, type CryptocurrencyResponse, type Department, DepartmentsList, 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 ManualInitializeProInput, type MaritalStatus, MaritalStatusEnum, MartialStatuses, type MatchingLeadsResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type MonthlyMetricEntry, OfferStatusEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PersonalNetWorthRange, PersonalNetWorthRangeEnum, PersonalNetWorthRanges, type PersonalSalaryRange, PersonalSalaryRangeEnum, PersonalSalaryRanges, PhoneVerificationStatusEnum, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProBillingPortalSessionResponse, type ProCertification, ProCertificationEnum, ProCertifications, type ProCommercialOfferLeadResponse, type ProCommercialOfferResponse, type ProLeadsAlertResponse, type ProMonitoringResponse, type ProMonthlyQuotaResponse, type ProResponse, ProStatusEnum, type ProSubscriptionSessionResponse, type ProUserLikeLeadResponse, type ProUserLikeResponse, type Profession, ProfessionEnum, type ProfessionStatus, ProfessionStatusEnum, ProfessionStatusList, ProfessionsList, type ProjectNeed, ProjectNeedEnum, ProjectNeeds, ProjectOptionEnum, type ProjectResponse, ProjectStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, type SendPhoneVerificationInput, type SendPhoneVerificationResponse, SupportedCurrencyExchangesEnum, SupportedCurrencySymbolsEnum, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateCommercialOfferAsProInput, type UpdateCommercialOfferAsUserInput, type UpdateCommercialOfferInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProInput, type UpdateProLeadsAlertInput, type UpdateProjectInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAiSummaryResponse, UserAiSummaryStatusEnum, type UserAssetsBalancesResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserCommercialOfferResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, UserStatusEnum, type VerifyPhoneCodeInput, type VerifyPhoneCodeResponse, getFinancialProductKey, getFinancialProductLabel, getHouseholdSalaryRangeKey, getHouseholdSalaryRangeLabel, getMaritalStatusKey, getMaritalStatusLabel, getPersonalNetWorthRangeKey, getPersonalNetWorthRangeLabel, getPersonalSalaryRangeKey, getPersonalSalaryRangeLabel, getProCertificationByKey, getProCertificationByLabelOrDescription, getProfessionKey, getProfessionLabel, getProfessionStatusKey, getProfessionStatusLabel, getProjectNeedKey, getProjectNeedProLabel, getProjectNeedUserLabel };
|
package/dist/index.d.ts
CHANGED
|
@@ -491,6 +491,7 @@ interface UpdateProInput {
|
|
|
491
491
|
certifications?: ProCertificationEnum[] | null;
|
|
492
492
|
sirenId?: string | null;
|
|
493
493
|
oriasId?: string | null;
|
|
494
|
+
regulation?: string | null;
|
|
494
495
|
notificationEmail?: string | null;
|
|
495
496
|
}
|
|
496
497
|
|
|
@@ -500,8 +501,9 @@ interface ManualInitializeProInput {
|
|
|
500
501
|
email: string;
|
|
501
502
|
companyWebsite: string;
|
|
502
503
|
companyName: string;
|
|
503
|
-
oriasId: string;
|
|
504
|
+
oriasId: string | null;
|
|
504
505
|
sirenId: string;
|
|
506
|
+
regulation: string | null;
|
|
505
507
|
}
|
|
506
508
|
|
|
507
509
|
interface CreateProLeadsAlertInput {
|
|
@@ -770,6 +772,23 @@ interface RealEstateResponse {
|
|
|
770
772
|
createdAt: Date;
|
|
771
773
|
}
|
|
772
774
|
|
|
775
|
+
interface UserAssetsBalancesResponse {
|
|
776
|
+
total: number;
|
|
777
|
+
realEstate: number;
|
|
778
|
+
mobility: number;
|
|
779
|
+
otherAsset: number;
|
|
780
|
+
cryptocurrency: number;
|
|
781
|
+
currency: AvailableCurrencyEnum;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
interface UserAssetsResponse {
|
|
785
|
+
realEstateAssets: RealEstateResponse[];
|
|
786
|
+
mobilityAssets: MobilityResponse[];
|
|
787
|
+
cryptocurrencyAssets: CryptocurrencyAssetResponse[];
|
|
788
|
+
otherAssets: OtherAssetResponse[];
|
|
789
|
+
balances: UserAssetsBalancesResponse;
|
|
790
|
+
}
|
|
791
|
+
|
|
773
792
|
interface UserAuthenticatedResponse {
|
|
774
793
|
authenticated: boolean;
|
|
775
794
|
errorMessage: string | null;
|
|
@@ -786,6 +805,12 @@ interface ProSubscriptionSessionResponse {
|
|
|
786
805
|
errorMessage: string | null;
|
|
787
806
|
}
|
|
788
807
|
|
|
808
|
+
interface MonthlyMetricEntry {
|
|
809
|
+
year: number;
|
|
810
|
+
month: number;
|
|
811
|
+
count: number | null;
|
|
812
|
+
}
|
|
813
|
+
|
|
789
814
|
type AiAdvisorStatusResponse = "ok" | "risk_detected";
|
|
790
815
|
|
|
791
816
|
interface AiAdvisorSyntheseResponse {
|
|
@@ -1015,6 +1040,12 @@ interface LegalDocumentResponse {
|
|
|
1015
1040
|
version: string;
|
|
1016
1041
|
}
|
|
1017
1042
|
|
|
1043
|
+
interface ProMonitoringResponse {
|
|
1044
|
+
acceptedOffersPerMonth: MonthlyMetricEntry[];
|
|
1045
|
+
offersSentPerMonth: MonthlyMetricEntry[];
|
|
1046
|
+
currentMonthlyQuota: number;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1018
1049
|
interface ProResponse {
|
|
1019
1050
|
id: string;
|
|
1020
1051
|
clerkId: string;
|
|
@@ -1027,6 +1058,7 @@ interface ProResponse {
|
|
|
1027
1058
|
companyDescription: string | null;
|
|
1028
1059
|
sirenId: string | null;
|
|
1029
1060
|
oriasId: string | null;
|
|
1061
|
+
regulation: string | null;
|
|
1030
1062
|
certifications: ProCertificationEnum[];
|
|
1031
1063
|
status: ProStatusEnum;
|
|
1032
1064
|
notificationEmail: string | null;
|
|
@@ -1115,23 +1147,6 @@ interface ProjectResponse {
|
|
|
1115
1147
|
createdAt: Date;
|
|
1116
1148
|
}
|
|
1117
1149
|
|
|
1118
|
-
interface UserAssetsBalancesResponse {
|
|
1119
|
-
total: number;
|
|
1120
|
-
realEstate: number;
|
|
1121
|
-
mobility: number;
|
|
1122
|
-
otherAsset: number;
|
|
1123
|
-
cryptocurrency: number;
|
|
1124
|
-
currency: AvailableCurrencyEnum;
|
|
1125
|
-
}
|
|
1126
|
-
|
|
1127
|
-
interface UserAssetsResponse {
|
|
1128
|
-
realEstateAssets: RealEstateResponse[];
|
|
1129
|
-
mobilityAssets: MobilityResponse[];
|
|
1130
|
-
cryptocurrencyAssets: CryptocurrencyAssetResponse[];
|
|
1131
|
-
otherAssets: OtherAssetResponse[];
|
|
1132
|
-
balances: UserAssetsBalancesResponse;
|
|
1133
|
-
}
|
|
1134
|
-
|
|
1135
1150
|
interface Department {
|
|
1136
1151
|
code: string;
|
|
1137
1152
|
departmentName: string;
|
|
@@ -1216,4 +1231,4 @@ declare function getProjectNeedKey(label: string): ProjectNeedEnum | null;
|
|
|
1216
1231
|
|
|
1217
1232
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
|
1218
1233
|
|
|
1219
|
-
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 CreateCommercialOfferInput, type CreateMobilityInput, type CreateProLeadsAlertInput, type CreateProSubscriptionSessionInput, type CreateProjectInput, type CreateRealEstateInput, type CryptocurrencyAssetDeletedResponse, type CryptocurrencyAssetResponse, type CryptocurrencyResponse, type Department, DepartmentsList, 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 ManualInitializeProInput, type MaritalStatus, MaritalStatusEnum, MartialStatuses, type MatchingLeadsResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, OfferStatusEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PersonalNetWorthRange, PersonalNetWorthRangeEnum, PersonalNetWorthRanges, type PersonalSalaryRange, PersonalSalaryRangeEnum, PersonalSalaryRanges, PhoneVerificationStatusEnum, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProBillingPortalSessionResponse, type ProCertification, ProCertificationEnum, ProCertifications, type ProCommercialOfferLeadResponse, type ProCommercialOfferResponse, type ProLeadsAlertResponse, type ProMonthlyQuotaResponse, type ProResponse, ProStatusEnum, type ProSubscriptionSessionResponse, type ProUserLikeLeadResponse, type ProUserLikeResponse, type Profession, ProfessionEnum, type ProfessionStatus, ProfessionStatusEnum, ProfessionStatusList, ProfessionsList, type ProjectNeed, ProjectNeedEnum, ProjectNeeds, ProjectOptionEnum, type ProjectResponse, ProjectStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, type SendPhoneVerificationInput, type SendPhoneVerificationResponse, SupportedCurrencyExchangesEnum, SupportedCurrencySymbolsEnum, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateCommercialOfferAsProInput, type UpdateCommercialOfferAsUserInput, type UpdateCommercialOfferInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProInput, type UpdateProLeadsAlertInput, type UpdateProjectInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAiSummaryResponse, UserAiSummaryStatusEnum, type UserAssetsBalancesResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserCommercialOfferResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, UserStatusEnum, type VerifyPhoneCodeInput, type VerifyPhoneCodeResponse, getFinancialProductKey, getFinancialProductLabel, getHouseholdSalaryRangeKey, getHouseholdSalaryRangeLabel, getMaritalStatusKey, getMaritalStatusLabel, getPersonalNetWorthRangeKey, getPersonalNetWorthRangeLabel, getPersonalSalaryRangeKey, getPersonalSalaryRangeLabel, getProCertificationByKey, getProCertificationByLabelOrDescription, getProfessionKey, getProfessionLabel, getProfessionStatusKey, getProfessionStatusLabel, getProjectNeedKey, getProjectNeedProLabel, getProjectNeedUserLabel };
|
|
1234
|
+
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 CreateCommercialOfferInput, type CreateMobilityInput, type CreateProLeadsAlertInput, type CreateProSubscriptionSessionInput, type CreateProjectInput, type CreateRealEstateInput, type CryptocurrencyAssetDeletedResponse, type CryptocurrencyAssetResponse, type CryptocurrencyResponse, type Department, DepartmentsList, 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 ManualInitializeProInput, type MaritalStatus, MaritalStatusEnum, MartialStatuses, type MatchingLeadsResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type MonthlyMetricEntry, OfferStatusEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PersonalNetWorthRange, PersonalNetWorthRangeEnum, PersonalNetWorthRanges, type PersonalSalaryRange, PersonalSalaryRangeEnum, PersonalSalaryRanges, PhoneVerificationStatusEnum, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProBillingPortalSessionResponse, type ProCertification, ProCertificationEnum, ProCertifications, type ProCommercialOfferLeadResponse, type ProCommercialOfferResponse, type ProLeadsAlertResponse, type ProMonitoringResponse, type ProMonthlyQuotaResponse, type ProResponse, ProStatusEnum, type ProSubscriptionSessionResponse, type ProUserLikeLeadResponse, type ProUserLikeResponse, type Profession, ProfessionEnum, type ProfessionStatus, ProfessionStatusEnum, ProfessionStatusList, ProfessionsList, type ProjectNeed, ProjectNeedEnum, ProjectNeeds, ProjectOptionEnum, type ProjectResponse, ProjectStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, type SendPhoneVerificationInput, type SendPhoneVerificationResponse, SupportedCurrencyExchangesEnum, SupportedCurrencySymbolsEnum, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateCommercialOfferAsProInput, type UpdateCommercialOfferAsUserInput, type UpdateCommercialOfferInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProInput, type UpdateProLeadsAlertInput, type UpdateProjectInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAiSummaryResponse, UserAiSummaryStatusEnum, type UserAssetsBalancesResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserCommercialOfferResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, UserStatusEnum, type VerifyPhoneCodeInput, type VerifyPhoneCodeResponse, getFinancialProductKey, getFinancialProductLabel, getHouseholdSalaryRangeKey, getHouseholdSalaryRangeLabel, getMaritalStatusKey, getMaritalStatusLabel, getPersonalNetWorthRangeKey, getPersonalNetWorthRangeLabel, getPersonalSalaryRangeKey, getPersonalSalaryRangeLabel, getProCertificationByKey, getProCertificationByLabelOrDescription, getProfessionKey, getProfessionLabel, getProfessionStatusKey, getProfessionStatusLabel, getProjectNeedKey, getProjectNeedProLabel, getProjectNeedUserLabel };
|