sowhat-types 2.0.206 → 2.0.208

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 CHANGED
@@ -344,6 +344,10 @@ interface UpdateOtherAssetInput {
344
344
  iOwnShare: number;
345
345
  }
346
346
 
347
+ interface UpdateNotificationTokenInput {
348
+ expoToken: string | null;
349
+ }
350
+
347
351
  interface CreateProjectInput {
348
352
  option: ProjectOptionEnum;
349
353
  initialAmount: number;
@@ -449,7 +453,7 @@ interface BankAccountTransactionResponse {
449
453
  applicationDate: Date;
450
454
  date: Date;
451
455
  value: number | null;
452
- currency: string | null;
456
+ currency: AvailableCurrencyEnum | null;
453
457
  name: string;
454
458
  originalName: string;
455
459
  coming: boolean;
@@ -588,6 +592,11 @@ interface LegalDocumentResponse {
588
592
  version: string;
589
593
  }
590
594
 
595
+ interface NotificationTokenUpdatedResponse {
596
+ updated: boolean;
597
+ errorMessage: string | null;
598
+ }
599
+
591
600
  interface PowensConnectionResponse {
592
601
  id: string;
593
602
  state: PowensConnectionStateEnum | null;
@@ -706,7 +715,7 @@ interface UserAiSummaryResponse {
706
715
  }
707
716
 
708
717
  interface UserFinancialSummaryResponse {
709
- currency: string;
718
+ currency: AvailableCurrencyEnum;
710
719
  projectNeeds: ProjectNeedEnum[];
711
720
  totalRealEstatesValue: number | null;
712
721
  totalMobilitiesValue: number | null;
@@ -775,4 +784,4 @@ interface UserAssetsResponse {
775
784
 
776
785
  type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
777
786
 
778
- 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, type UserUpdatedResponse };
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 NotificationTokenUpdatedResponse, 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 UpdateNotificationTokenInput, 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, type UserUpdatedResponse };
package/dist/index.d.ts CHANGED
@@ -344,6 +344,10 @@ interface UpdateOtherAssetInput {
344
344
  iOwnShare: number;
345
345
  }
346
346
 
347
+ interface UpdateNotificationTokenInput {
348
+ expoToken: string | null;
349
+ }
350
+
347
351
  interface CreateProjectInput {
348
352
  option: ProjectOptionEnum;
349
353
  initialAmount: number;
@@ -449,7 +453,7 @@ interface BankAccountTransactionResponse {
449
453
  applicationDate: Date;
450
454
  date: Date;
451
455
  value: number | null;
452
- currency: string | null;
456
+ currency: AvailableCurrencyEnum | null;
453
457
  name: string;
454
458
  originalName: string;
455
459
  coming: boolean;
@@ -588,6 +592,11 @@ interface LegalDocumentResponse {
588
592
  version: string;
589
593
  }
590
594
 
595
+ interface NotificationTokenUpdatedResponse {
596
+ updated: boolean;
597
+ errorMessage: string | null;
598
+ }
599
+
591
600
  interface PowensConnectionResponse {
592
601
  id: string;
593
602
  state: PowensConnectionStateEnum | null;
@@ -706,7 +715,7 @@ interface UserAiSummaryResponse {
706
715
  }
707
716
 
708
717
  interface UserFinancialSummaryResponse {
709
- currency: string;
718
+ currency: AvailableCurrencyEnum;
710
719
  projectNeeds: ProjectNeedEnum[];
711
720
  totalRealEstatesValue: number | null;
712
721
  totalMobilitiesValue: number | null;
@@ -775,4 +784,4 @@ interface UserAssetsResponse {
775
784
 
776
785
  type ExactMatch<T, U extends T> = T & Record<keyof T, keyof U>;
777
786
 
778
- 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, type UserUpdatedResponse };
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 NotificationTokenUpdatedResponse, 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 UpdateNotificationTokenInput, 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, type UserUpdatedResponse };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.206",
3
+ "version": "2.0.208",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",