sowhat-types 2.0.261 → 2.0.263
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 +35 -18
- package/dist/index.d.ts +35 -18
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -770,17 +770,45 @@ interface RealEstateResponse {
|
|
|
770
770
|
createdAt: Date;
|
|
771
771
|
}
|
|
772
772
|
|
|
773
|
+
interface UserAssetsBalancesResponse {
|
|
774
|
+
total: number;
|
|
775
|
+
realEstate: number;
|
|
776
|
+
mobility: number;
|
|
777
|
+
otherAsset: number;
|
|
778
|
+
cryptocurrency: number;
|
|
779
|
+
currency: AvailableCurrencyEnum;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
interface UserAssetsResponse {
|
|
783
|
+
realEstateAssets: RealEstateResponse[];
|
|
784
|
+
mobilityAssets: MobilityResponse[];
|
|
785
|
+
cryptocurrencyAssets: CryptocurrencyAssetResponse[];
|
|
786
|
+
otherAssets: OtherAssetResponse[];
|
|
787
|
+
balances: UserAssetsBalancesResponse;
|
|
788
|
+
}
|
|
789
|
+
|
|
773
790
|
interface UserAuthenticatedResponse {
|
|
774
791
|
authenticated: boolean;
|
|
775
792
|
errorMessage: string | null;
|
|
776
793
|
hasPincode: boolean;
|
|
777
794
|
}
|
|
778
795
|
|
|
796
|
+
interface ProBillingPortalSessionResponse {
|
|
797
|
+
url: string | null;
|
|
798
|
+
errorMessage: string | null;
|
|
799
|
+
}
|
|
800
|
+
|
|
779
801
|
interface ProSubscriptionSessionResponse {
|
|
780
802
|
url: string | null;
|
|
781
803
|
errorMessage: string | null;
|
|
782
804
|
}
|
|
783
805
|
|
|
806
|
+
interface MonthlyMetricEntry {
|
|
807
|
+
year: number;
|
|
808
|
+
month: number;
|
|
809
|
+
count: number | null;
|
|
810
|
+
}
|
|
811
|
+
|
|
784
812
|
type AiAdvisorStatusResponse = "ok" | "risk_detected";
|
|
785
813
|
|
|
786
814
|
interface AiAdvisorSyntheseResponse {
|
|
@@ -1010,6 +1038,12 @@ interface LegalDocumentResponse {
|
|
|
1010
1038
|
version: string;
|
|
1011
1039
|
}
|
|
1012
1040
|
|
|
1041
|
+
interface ProMonitoringResponse {
|
|
1042
|
+
acceptedOffersPerMonth: MonthlyMetricEntry[];
|
|
1043
|
+
offersSentPerMonth: MonthlyMetricEntry[];
|
|
1044
|
+
currentMonthlyQuota: number;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1013
1047
|
interface ProResponse {
|
|
1014
1048
|
id: string;
|
|
1015
1049
|
clerkId: string;
|
|
@@ -1110,23 +1144,6 @@ interface ProjectResponse {
|
|
|
1110
1144
|
createdAt: Date;
|
|
1111
1145
|
}
|
|
1112
1146
|
|
|
1113
|
-
interface UserAssetsBalancesResponse {
|
|
1114
|
-
total: number;
|
|
1115
|
-
realEstate: number;
|
|
1116
|
-
mobility: number;
|
|
1117
|
-
otherAsset: number;
|
|
1118
|
-
cryptocurrency: number;
|
|
1119
|
-
currency: AvailableCurrencyEnum;
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
|
-
interface UserAssetsResponse {
|
|
1123
|
-
realEstateAssets: RealEstateResponse[];
|
|
1124
|
-
mobilityAssets: MobilityResponse[];
|
|
1125
|
-
cryptocurrencyAssets: CryptocurrencyAssetResponse[];
|
|
1126
|
-
otherAssets: OtherAssetResponse[];
|
|
1127
|
-
balances: UserAssetsBalancesResponse;
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
1147
|
interface Department {
|
|
1131
1148
|
code: string;
|
|
1132
1149
|
departmentName: string;
|
|
@@ -1211,4 +1228,4 @@ declare function getProjectNeedKey(label: string): ProjectNeedEnum | null;
|
|
|
1211
1228
|
|
|
1212
1229
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
|
1213
1230
|
|
|
1214
|
-
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 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 };
|
|
1231
|
+
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
|
@@ -770,17 +770,45 @@ interface RealEstateResponse {
|
|
|
770
770
|
createdAt: Date;
|
|
771
771
|
}
|
|
772
772
|
|
|
773
|
+
interface UserAssetsBalancesResponse {
|
|
774
|
+
total: number;
|
|
775
|
+
realEstate: number;
|
|
776
|
+
mobility: number;
|
|
777
|
+
otherAsset: number;
|
|
778
|
+
cryptocurrency: number;
|
|
779
|
+
currency: AvailableCurrencyEnum;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
interface UserAssetsResponse {
|
|
783
|
+
realEstateAssets: RealEstateResponse[];
|
|
784
|
+
mobilityAssets: MobilityResponse[];
|
|
785
|
+
cryptocurrencyAssets: CryptocurrencyAssetResponse[];
|
|
786
|
+
otherAssets: OtherAssetResponse[];
|
|
787
|
+
balances: UserAssetsBalancesResponse;
|
|
788
|
+
}
|
|
789
|
+
|
|
773
790
|
interface UserAuthenticatedResponse {
|
|
774
791
|
authenticated: boolean;
|
|
775
792
|
errorMessage: string | null;
|
|
776
793
|
hasPincode: boolean;
|
|
777
794
|
}
|
|
778
795
|
|
|
796
|
+
interface ProBillingPortalSessionResponse {
|
|
797
|
+
url: string | null;
|
|
798
|
+
errorMessage: string | null;
|
|
799
|
+
}
|
|
800
|
+
|
|
779
801
|
interface ProSubscriptionSessionResponse {
|
|
780
802
|
url: string | null;
|
|
781
803
|
errorMessage: string | null;
|
|
782
804
|
}
|
|
783
805
|
|
|
806
|
+
interface MonthlyMetricEntry {
|
|
807
|
+
year: number;
|
|
808
|
+
month: number;
|
|
809
|
+
count: number | null;
|
|
810
|
+
}
|
|
811
|
+
|
|
784
812
|
type AiAdvisorStatusResponse = "ok" | "risk_detected";
|
|
785
813
|
|
|
786
814
|
interface AiAdvisorSyntheseResponse {
|
|
@@ -1010,6 +1038,12 @@ interface LegalDocumentResponse {
|
|
|
1010
1038
|
version: string;
|
|
1011
1039
|
}
|
|
1012
1040
|
|
|
1041
|
+
interface ProMonitoringResponse {
|
|
1042
|
+
acceptedOffersPerMonth: MonthlyMetricEntry[];
|
|
1043
|
+
offersSentPerMonth: MonthlyMetricEntry[];
|
|
1044
|
+
currentMonthlyQuota: number;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1013
1047
|
interface ProResponse {
|
|
1014
1048
|
id: string;
|
|
1015
1049
|
clerkId: string;
|
|
@@ -1110,23 +1144,6 @@ interface ProjectResponse {
|
|
|
1110
1144
|
createdAt: Date;
|
|
1111
1145
|
}
|
|
1112
1146
|
|
|
1113
|
-
interface UserAssetsBalancesResponse {
|
|
1114
|
-
total: number;
|
|
1115
|
-
realEstate: number;
|
|
1116
|
-
mobility: number;
|
|
1117
|
-
otherAsset: number;
|
|
1118
|
-
cryptocurrency: number;
|
|
1119
|
-
currency: AvailableCurrencyEnum;
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
|
-
interface UserAssetsResponse {
|
|
1123
|
-
realEstateAssets: RealEstateResponse[];
|
|
1124
|
-
mobilityAssets: MobilityResponse[];
|
|
1125
|
-
cryptocurrencyAssets: CryptocurrencyAssetResponse[];
|
|
1126
|
-
otherAssets: OtherAssetResponse[];
|
|
1127
|
-
balances: UserAssetsBalancesResponse;
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
1147
|
interface Department {
|
|
1131
1148
|
code: string;
|
|
1132
1149
|
departmentName: string;
|
|
@@ -1211,4 +1228,4 @@ declare function getProjectNeedKey(label: string): ProjectNeedEnum | null;
|
|
|
1211
1228
|
|
|
1212
1229
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
|
1213
1230
|
|
|
1214
|
-
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 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 };
|
|
1231
|
+
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 };
|