sowhat-types 2.0.209 → 2.0.211
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 +3 -15
- package/dist/index.d.ts +3 -15
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -344,10 +344,6 @@ interface UpdateOtherAssetInput {
|
|
|
344
344
|
iOwnShare: number;
|
|
345
345
|
}
|
|
346
346
|
|
|
347
|
-
interface UpdateNotificationTokenInput {
|
|
348
|
-
expoToken: string | null;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
347
|
interface CreateProjectInput {
|
|
352
348
|
option: ProjectOptionEnum;
|
|
353
349
|
initialAmount: number;
|
|
@@ -406,6 +402,7 @@ interface UpdateUserPersonalSummaryInput {
|
|
|
406
402
|
|
|
407
403
|
interface UpdateUserInput {
|
|
408
404
|
hasCompletedOnboarding?: boolean;
|
|
405
|
+
expoToken?: string | null;
|
|
409
406
|
}
|
|
410
407
|
|
|
411
408
|
interface LoanResponse {
|
|
@@ -592,11 +589,6 @@ interface LegalDocumentResponse {
|
|
|
592
589
|
version: string;
|
|
593
590
|
}
|
|
594
591
|
|
|
595
|
-
interface NotificationTokenUpdatedResponse {
|
|
596
|
-
updated: boolean;
|
|
597
|
-
errorMessage: string | null;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
592
|
interface PowensConnectionResponse {
|
|
601
593
|
id: string;
|
|
602
594
|
state: PowensConnectionStateEnum | null;
|
|
@@ -754,17 +746,13 @@ interface UserProfileResponse {
|
|
|
754
746
|
currency: AvailableCurrencyEnum;
|
|
755
747
|
status: UserStatusEnum;
|
|
756
748
|
gotPowensUser: boolean;
|
|
749
|
+
expoToken: string | null;
|
|
757
750
|
latestTermsOfUsageVersionConsented: string;
|
|
758
751
|
latestPrivacyPolicyVersionConsented: string;
|
|
759
752
|
createdAt: Date;
|
|
760
753
|
updatedAt: Date;
|
|
761
754
|
}
|
|
762
755
|
|
|
763
|
-
interface UserUpdatedResponse {
|
|
764
|
-
updated: boolean;
|
|
765
|
-
errorMessage: string | null;
|
|
766
|
-
}
|
|
767
|
-
|
|
768
756
|
interface UserAssetsBalancesResponse {
|
|
769
757
|
total: number;
|
|
770
758
|
realEstate: number;
|
|
@@ -784,4 +772,4 @@ interface UserAssetsResponse {
|
|
|
784
772
|
|
|
785
773
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
|
786
774
|
|
|
787
|
-
export { AI_SUMMARY_TEMPLATE_VERSION, type AiSummaryTemplateResponse, 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
|
|
775
|
+
export { AI_SUMMARY_TEMPLATE_VERSION, type AiSummaryTemplateResponse, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -344,10 +344,6 @@ interface UpdateOtherAssetInput {
|
|
|
344
344
|
iOwnShare: number;
|
|
345
345
|
}
|
|
346
346
|
|
|
347
|
-
interface UpdateNotificationTokenInput {
|
|
348
|
-
expoToken: string | null;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
347
|
interface CreateProjectInput {
|
|
352
348
|
option: ProjectOptionEnum;
|
|
353
349
|
initialAmount: number;
|
|
@@ -406,6 +402,7 @@ interface UpdateUserPersonalSummaryInput {
|
|
|
406
402
|
|
|
407
403
|
interface UpdateUserInput {
|
|
408
404
|
hasCompletedOnboarding?: boolean;
|
|
405
|
+
expoToken?: string | null;
|
|
409
406
|
}
|
|
410
407
|
|
|
411
408
|
interface LoanResponse {
|
|
@@ -592,11 +589,6 @@ interface LegalDocumentResponse {
|
|
|
592
589
|
version: string;
|
|
593
590
|
}
|
|
594
591
|
|
|
595
|
-
interface NotificationTokenUpdatedResponse {
|
|
596
|
-
updated: boolean;
|
|
597
|
-
errorMessage: string | null;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
592
|
interface PowensConnectionResponse {
|
|
601
593
|
id: string;
|
|
602
594
|
state: PowensConnectionStateEnum | null;
|
|
@@ -754,17 +746,13 @@ interface UserProfileResponse {
|
|
|
754
746
|
currency: AvailableCurrencyEnum;
|
|
755
747
|
status: UserStatusEnum;
|
|
756
748
|
gotPowensUser: boolean;
|
|
749
|
+
expoToken: string | null;
|
|
757
750
|
latestTermsOfUsageVersionConsented: string;
|
|
758
751
|
latestPrivacyPolicyVersionConsented: string;
|
|
759
752
|
createdAt: Date;
|
|
760
753
|
updatedAt: Date;
|
|
761
754
|
}
|
|
762
755
|
|
|
763
|
-
interface UserUpdatedResponse {
|
|
764
|
-
updated: boolean;
|
|
765
|
-
errorMessage: string | null;
|
|
766
|
-
}
|
|
767
|
-
|
|
768
756
|
interface UserAssetsBalancesResponse {
|
|
769
757
|
total: number;
|
|
770
758
|
realEstate: number;
|
|
@@ -784,4 +772,4 @@ interface UserAssetsResponse {
|
|
|
784
772
|
|
|
785
773
|
type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
|
|
786
774
|
|
|
787
|
-
export { AI_SUMMARY_TEMPLATE_VERSION, type AiSummaryTemplateResponse, 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
|
|
775
|
+
export { AI_SUMMARY_TEMPLATE_VERSION, type AiSummaryTemplateResponse, 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 };
|