sowhat-types 2.0.188 → 2.0.190
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 +22 -14
- package/dist/index.d.ts +22 -14
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -292,6 +292,11 @@ interface UpdateBankAccountTransactionInput {
|
|
|
292
292
|
newApplicationDate?: Date;
|
|
293
293
|
}
|
|
294
294
|
|
|
295
|
+
interface UpdateCryptocurrencyAssetInput {
|
|
296
|
+
symbol: AvailableCryptocurrencySymbolEnum;
|
|
297
|
+
quantity: number;
|
|
298
|
+
}
|
|
299
|
+
|
|
295
300
|
interface CreateMobilityInput {
|
|
296
301
|
name: string;
|
|
297
302
|
type: MobilityTypeEnum;
|
|
@@ -352,17 +357,6 @@ interface UpdateOtherAssetInput {
|
|
|
352
357
|
loanId?: string | null;
|
|
353
358
|
}
|
|
354
359
|
|
|
355
|
-
interface BatchUpdateUserAssetInput {
|
|
356
|
-
id: string;
|
|
357
|
-
position?: number;
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
interface BatchUpdateUserAssetsInput {
|
|
361
|
-
mobilities: BatchUpdateUserAssetInput[];
|
|
362
|
-
realEstates: BatchUpdateUserAssetInput[];
|
|
363
|
-
others: BatchUpdateUserAssetInput[];
|
|
364
|
-
}
|
|
365
|
-
|
|
366
360
|
interface CreateBudgetExpensesAllocationInput {
|
|
367
361
|
name: string;
|
|
368
362
|
icon: string;
|
|
@@ -710,8 +704,22 @@ interface UserBankAccountRefreshedResponse {
|
|
|
710
704
|
errorMessage: string | null;
|
|
711
705
|
}
|
|
712
706
|
|
|
713
|
-
interface
|
|
707
|
+
interface CryptocurrencyAssetResponse {
|
|
714
708
|
id: string;
|
|
709
|
+
symbol: AvailableCryptocurrencySymbolEnum;
|
|
710
|
+
priceUsd: number | null;
|
|
711
|
+
priceUserCurrency: number | null;
|
|
712
|
+
quantity: number;
|
|
713
|
+
currency: AvailableCurrencyEnum;
|
|
714
|
+
updatedAt: Date;
|
|
715
|
+
createdAt: Date;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
interface CryptocurrencyResponse {
|
|
719
|
+
symbol: AvailableCryptocurrencySymbolEnum;
|
|
720
|
+
priceUsd: number | null;
|
|
721
|
+
priceEuro: number | null;
|
|
722
|
+
updatedAt: Date;
|
|
715
723
|
}
|
|
716
724
|
|
|
717
725
|
interface MobilityDeletedResponse {
|
|
@@ -1071,7 +1079,7 @@ interface UserAssetsBatchUpdatedResponse {
|
|
|
1071
1079
|
interface UserAssetsResponse {
|
|
1072
1080
|
realEstateAssets: RealEstateResponse[];
|
|
1073
1081
|
mobilityAssets: MobilityResponse[];
|
|
1074
|
-
cryptocurrencyAssets:
|
|
1082
|
+
cryptocurrencyAssets: CryptocurrencyAssetResponse[];
|
|
1075
1083
|
stockExchangeAssets: StockExchangeResponse[];
|
|
1076
1084
|
otherAssets: OtherAssetResponse[];
|
|
1077
1085
|
balances: UserAssetsBalancesResponse;
|
|
@@ -1160,4 +1168,4 @@ declare class FilterArgs {
|
|
|
1160
1168
|
take: number;
|
|
1161
1169
|
}
|
|
1162
1170
|
|
|
1163
|
-
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type AnonymousUsersResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCryptocurrencySymbolEnum, AvailableCurrencyEnum, BUDGET_ID_REGEX, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BatchUpdateBudgetSavingsAllocationInput, type BatchUpdateBudgetSavingsAllocationsInput, type
|
|
1171
|
+
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type AnonymousUsersResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCryptocurrencySymbolEnum, AvailableCurrencyEnum, BUDGET_ID_REGEX, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BatchUpdateBudgetSavingsAllocationInput, type BatchUpdateBudgetSavingsAllocationsInput, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationUpdatedResponse, type BudgetExpensesAllocationsBatchUpdatedResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationUpdatedResponse, type BudgetIncomesAllocationsBatchUpdatedResponse, type BudgetIncomesAllocationsResponse, type BudgetResponse, type BudgetSavingsAllocationDeletedResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsAllocationUpdatedResponse, type BudgetSavingsAllocationsBatchUpdatedResponse, BudgetTypeEnum, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateBudgetSavingsAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateProjectInput, type CreateQuestionInput, type CreateRealEstateInput, type CryptocurrencyAssetResponse, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, FilterArgs, FinancialProductEnum, FinancialProductOwnedEnum, type FinancialSummariesFiltersInput, type GlobalWealthStatisticsResponse, LIVES_OUTSIDE_FRANCE, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type MultipleTransactionsAllocationResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, ProjectNeedEnum, ProjectOptionEnum, type ProjectResponse, QuestionCategoryEnum, type QuestionOptionInput, type QuestionOptionResponse, type QuestionResponse, QuestionTypeEnum, type QuestionVersionResponse, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportResponse, type ReportValueResponse, type ReportWealthResponse, type ReportsResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type SwipableBudgetResponse, type SwipableBudgetsResponse, type TransactionAllocatedResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProjectInput, type UpdateQuestionInput, type UpdateQuestionPositionInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAnswerResponse, type UserAssetsBalancesResponse, type UserAssetsBatchUpdatedResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserConsentResponse, type UserConsentsResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -292,6 +292,11 @@ interface UpdateBankAccountTransactionInput {
|
|
|
292
292
|
newApplicationDate?: Date;
|
|
293
293
|
}
|
|
294
294
|
|
|
295
|
+
interface UpdateCryptocurrencyAssetInput {
|
|
296
|
+
symbol: AvailableCryptocurrencySymbolEnum;
|
|
297
|
+
quantity: number;
|
|
298
|
+
}
|
|
299
|
+
|
|
295
300
|
interface CreateMobilityInput {
|
|
296
301
|
name: string;
|
|
297
302
|
type: MobilityTypeEnum;
|
|
@@ -352,17 +357,6 @@ interface UpdateOtherAssetInput {
|
|
|
352
357
|
loanId?: string | null;
|
|
353
358
|
}
|
|
354
359
|
|
|
355
|
-
interface BatchUpdateUserAssetInput {
|
|
356
|
-
id: string;
|
|
357
|
-
position?: number;
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
interface BatchUpdateUserAssetsInput {
|
|
361
|
-
mobilities: BatchUpdateUserAssetInput[];
|
|
362
|
-
realEstates: BatchUpdateUserAssetInput[];
|
|
363
|
-
others: BatchUpdateUserAssetInput[];
|
|
364
|
-
}
|
|
365
|
-
|
|
366
360
|
interface CreateBudgetExpensesAllocationInput {
|
|
367
361
|
name: string;
|
|
368
362
|
icon: string;
|
|
@@ -710,8 +704,22 @@ interface UserBankAccountRefreshedResponse {
|
|
|
710
704
|
errorMessage: string | null;
|
|
711
705
|
}
|
|
712
706
|
|
|
713
|
-
interface
|
|
707
|
+
interface CryptocurrencyAssetResponse {
|
|
714
708
|
id: string;
|
|
709
|
+
symbol: AvailableCryptocurrencySymbolEnum;
|
|
710
|
+
priceUsd: number | null;
|
|
711
|
+
priceUserCurrency: number | null;
|
|
712
|
+
quantity: number;
|
|
713
|
+
currency: AvailableCurrencyEnum;
|
|
714
|
+
updatedAt: Date;
|
|
715
|
+
createdAt: Date;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
interface CryptocurrencyResponse {
|
|
719
|
+
symbol: AvailableCryptocurrencySymbolEnum;
|
|
720
|
+
priceUsd: number | null;
|
|
721
|
+
priceEuro: number | null;
|
|
722
|
+
updatedAt: Date;
|
|
715
723
|
}
|
|
716
724
|
|
|
717
725
|
interface MobilityDeletedResponse {
|
|
@@ -1071,7 +1079,7 @@ interface UserAssetsBatchUpdatedResponse {
|
|
|
1071
1079
|
interface UserAssetsResponse {
|
|
1072
1080
|
realEstateAssets: RealEstateResponse[];
|
|
1073
1081
|
mobilityAssets: MobilityResponse[];
|
|
1074
|
-
cryptocurrencyAssets:
|
|
1082
|
+
cryptocurrencyAssets: CryptocurrencyAssetResponse[];
|
|
1075
1083
|
stockExchangeAssets: StockExchangeResponse[];
|
|
1076
1084
|
otherAssets: OtherAssetResponse[];
|
|
1077
1085
|
balances: UserAssetsBalancesResponse;
|
|
@@ -1160,4 +1168,4 @@ declare class FilterArgs {
|
|
|
1160
1168
|
take: number;
|
|
1161
1169
|
}
|
|
1162
1170
|
|
|
1163
|
-
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type AnonymousUsersResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCryptocurrencySymbolEnum, AvailableCurrencyEnum, BUDGET_ID_REGEX, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BatchUpdateBudgetSavingsAllocationInput, type BatchUpdateBudgetSavingsAllocationsInput, type
|
|
1171
|
+
export { type AllocateMultipleTransactionsInput, type AllocateTransactionInput, type AnonymousUserResponse, type AnonymousUsersResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCryptocurrencySymbolEnum, AvailableCurrencyEnum, BUDGET_ID_REGEX, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BatchUpdateBudgetSavingsAllocationInput, type BatchUpdateBudgetSavingsAllocationsInput, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationUpdatedResponse, type BudgetExpensesAllocationsBatchUpdatedResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationUpdatedResponse, type BudgetIncomesAllocationsBatchUpdatedResponse, type BudgetIncomesAllocationsResponse, type BudgetResponse, type BudgetSavingsAllocationDeletedResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsAllocationUpdatedResponse, type BudgetSavingsAllocationsBatchUpdatedResponse, BudgetTypeEnum, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateBudgetSavingsAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateProjectInput, type CreateQuestionInput, type CreateRealEstateInput, type CryptocurrencyAssetResponse, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, FilterArgs, FinancialProductEnum, FinancialProductOwnedEnum, type FinancialSummariesFiltersInput, type GlobalWealthStatisticsResponse, LIVES_OUTSIDE_FRANCE, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type MultipleTransactionsAllocationResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, ProjectNeedEnum, ProjectOptionEnum, type ProjectResponse, QuestionCategoryEnum, type QuestionOptionInput, type QuestionOptionResponse, type QuestionResponse, QuestionTypeEnum, type QuestionVersionResponse, type RealEstateDeletedResponse, type RealEstateResponse, RealEstateTypeEnum, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportResponse, type ReportValueResponse, type ReportWealthResponse, type ReportsResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type SwipableBudgetResponse, type SwipableBudgetsResponse, type TransactionAllocatedResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateCryptocurrencyAssetInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateProjectInput, type UpdateQuestionInput, type UpdateQuestionPositionInput, type UpdateRealEstateInput, type UpdateUserInput, type UpdateUserPersonalSummaryInput, type UserAnswerResponse, type UserAssetsBalancesResponse, type UserAssetsBatchUpdatedResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserConsentResponse, type UserConsentsResponse, type UserFinancialSummaryResponse, type UserPersonalSummaryResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|