sowhat-types 2.0.212 → 2.0.214
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 +32 -1
- package/dist/index.d.ts +32 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -344,6 +344,20 @@ interface UpdateOtherAssetInput {
|
|
|
344
344
|
iOwnShare: number;
|
|
345
345
|
}
|
|
346
346
|
|
|
347
|
+
interface UpdateProInput {
|
|
348
|
+
id: string;
|
|
349
|
+
clerkId: string;
|
|
350
|
+
firstName?: string | null;
|
|
351
|
+
lastName?: string | null;
|
|
352
|
+
role?: string | null;
|
|
353
|
+
presentation?: string | null;
|
|
354
|
+
companyName?: string | null;
|
|
355
|
+
companyDescription?: string | null;
|
|
356
|
+
sirenId?: string | null;
|
|
357
|
+
amfId?: string | null;
|
|
358
|
+
oriasId?: string | null;
|
|
359
|
+
}
|
|
360
|
+
|
|
347
361
|
interface CreateProjectInput {
|
|
348
362
|
option: ProjectOptionEnum;
|
|
349
363
|
initialAmount: number;
|
|
@@ -617,6 +631,23 @@ interface PowensConnectWebviewResponse {
|
|
|
617
631
|
createdAt: Date;
|
|
618
632
|
}
|
|
619
633
|
|
|
634
|
+
interface ProResponse {
|
|
635
|
+
id: string;
|
|
636
|
+
clerkId: string;
|
|
637
|
+
firstName: string | null;
|
|
638
|
+
lastName: string | null;
|
|
639
|
+
role: string | null;
|
|
640
|
+
presentation: string | null;
|
|
641
|
+
companyImage: string | null;
|
|
642
|
+
companyName: string | null;
|
|
643
|
+
companyDescription: string | null;
|
|
644
|
+
sirenId: string | null;
|
|
645
|
+
amfId: string | null;
|
|
646
|
+
oriasId: string | null;
|
|
647
|
+
updatedAt: Date;
|
|
648
|
+
createdAt: Date;
|
|
649
|
+
}
|
|
650
|
+
|
|
620
651
|
interface ProjectResponse {
|
|
621
652
|
id: string;
|
|
622
653
|
status: ProjectStatusEnum;
|
|
@@ -745,4 +776,4 @@ interface UserAssetsResponse {
|
|
|
745
776
|
|
|
746
777
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
|
747
778
|
|
|
748
|
-
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, FinancialProductEnum, type FinancialSummariesFiltersInput, LIVES_OUTSIDE_FRANCE, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, ProfessionEnum, ProfessionStatusEnum, ProjectNeedEnum, ProjectOptionEnum, type ProjectResponse, ProjectStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, SupportedCurrencyExchangesEnum, SupportedCurrencySymbolsEnum, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProjectInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAiSummaryResponse, UserAiSummaryStatusEnum, type UserAssetsBalancesResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, UserStatusEnum };
|
|
779
|
+
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, FinancialProductEnum, type FinancialSummariesFiltersInput, LIVES_OUTSIDE_FRANCE, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProResponse, ProfessionEnum, ProfessionStatusEnum, ProjectNeedEnum, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -344,6 +344,20 @@ interface UpdateOtherAssetInput {
|
|
|
344
344
|
iOwnShare: number;
|
|
345
345
|
}
|
|
346
346
|
|
|
347
|
+
interface UpdateProInput {
|
|
348
|
+
id: string;
|
|
349
|
+
clerkId: string;
|
|
350
|
+
firstName?: string | null;
|
|
351
|
+
lastName?: string | null;
|
|
352
|
+
role?: string | null;
|
|
353
|
+
presentation?: string | null;
|
|
354
|
+
companyName?: string | null;
|
|
355
|
+
companyDescription?: string | null;
|
|
356
|
+
sirenId?: string | null;
|
|
357
|
+
amfId?: string | null;
|
|
358
|
+
oriasId?: string | null;
|
|
359
|
+
}
|
|
360
|
+
|
|
347
361
|
interface CreateProjectInput {
|
|
348
362
|
option: ProjectOptionEnum;
|
|
349
363
|
initialAmount: number;
|
|
@@ -617,6 +631,23 @@ interface PowensConnectWebviewResponse {
|
|
|
617
631
|
createdAt: Date;
|
|
618
632
|
}
|
|
619
633
|
|
|
634
|
+
interface ProResponse {
|
|
635
|
+
id: string;
|
|
636
|
+
clerkId: string;
|
|
637
|
+
firstName: string | null;
|
|
638
|
+
lastName: string | null;
|
|
639
|
+
role: string | null;
|
|
640
|
+
presentation: string | null;
|
|
641
|
+
companyImage: string | null;
|
|
642
|
+
companyName: string | null;
|
|
643
|
+
companyDescription: string | null;
|
|
644
|
+
sirenId: string | null;
|
|
645
|
+
amfId: string | null;
|
|
646
|
+
oriasId: string | null;
|
|
647
|
+
updatedAt: Date;
|
|
648
|
+
createdAt: Date;
|
|
649
|
+
}
|
|
650
|
+
|
|
620
651
|
interface ProjectResponse {
|
|
621
652
|
id: string;
|
|
622
653
|
status: ProjectStatusEnum;
|
|
@@ -745,4 +776,4 @@ interface UserAssetsResponse {
|
|
|
745
776
|
|
|
746
777
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
|
747
778
|
|
|
748
|
-
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, FinancialProductEnum, type FinancialSummariesFiltersInput, LIVES_OUTSIDE_FRANCE, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, ProfessionEnum, ProfessionStatusEnum, ProjectNeedEnum, ProjectOptionEnum, type ProjectResponse, ProjectStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, SupportedCurrencyExchangesEnum, SupportedCurrencySymbolsEnum, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProjectInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAiSummaryResponse, UserAiSummaryStatusEnum, type UserAssetsBalancesResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, UserStatusEnum };
|
|
779
|
+
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, FinancialProductEnum, type FinancialSummariesFiltersInput, LIVES_OUTSIDE_FRANCE, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type ProResponse, ProfessionEnum, ProfessionStatusEnum, ProjectNeedEnum, 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 };
|