sowhat-types 2.0.128 → 2.0.130
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 +49 -35
- package/dist/index.d.ts +49 -35
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -370,34 +370,6 @@ interface LoanResponse {
|
|
|
370
370
|
currency: string;
|
|
371
371
|
}
|
|
372
372
|
|
|
373
|
-
interface TransactionAllocatedResponse {
|
|
374
|
-
allocated: boolean;
|
|
375
|
-
errorMessage: string | null;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
interface BankAccountBalancesResponse {
|
|
379
|
-
/**
|
|
380
|
-
* total balance for checking type accounts
|
|
381
|
-
*/
|
|
382
|
-
checking: number | null;
|
|
383
|
-
/**
|
|
384
|
-
* total incoming balance for checking type accounts
|
|
385
|
-
*/
|
|
386
|
-
incomingChecking: number | null;
|
|
387
|
-
/**
|
|
388
|
-
* total balance for savings type accounts
|
|
389
|
-
*/
|
|
390
|
-
savings: number | null;
|
|
391
|
-
/**
|
|
392
|
-
* total incoming balance for savings type accounts
|
|
393
|
-
*/
|
|
394
|
-
incomingSavings: number | null;
|
|
395
|
-
/**
|
|
396
|
-
* e.g. '€'
|
|
397
|
-
*/
|
|
398
|
-
currency: string;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
373
|
interface BankAccountOriginalTransactionResponse {
|
|
402
374
|
value: number;
|
|
403
375
|
currency: string;
|
|
@@ -405,12 +377,6 @@ interface BankAccountOriginalTransactionResponse {
|
|
|
405
377
|
commissionCurrency: string | null;
|
|
406
378
|
}
|
|
407
379
|
|
|
408
|
-
interface BankAccountTransactionCounterpartyResponse {
|
|
409
|
-
label: string | null;
|
|
410
|
-
accountScheme: BankAccountSchemeNameEnum | null;
|
|
411
|
-
type: string | null;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
380
|
interface AssetCoOwnerResponse {
|
|
415
381
|
id: string;
|
|
416
382
|
name: string;
|
|
@@ -494,6 +460,41 @@ interface BankAccountTransactionResponse {
|
|
|
494
460
|
allocated: Date | null;
|
|
495
461
|
}
|
|
496
462
|
|
|
463
|
+
interface TransactionAllocatedResponse {
|
|
464
|
+
transaction: BankAccountTransactionResponse;
|
|
465
|
+
allocated: boolean;
|
|
466
|
+
errorMessage: string | null;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
interface BankAccountBalancesResponse {
|
|
470
|
+
/**
|
|
471
|
+
* total balance for checking type accounts
|
|
472
|
+
*/
|
|
473
|
+
checking: number | null;
|
|
474
|
+
/**
|
|
475
|
+
* total incoming balance for checking type accounts
|
|
476
|
+
*/
|
|
477
|
+
incomingChecking: number | null;
|
|
478
|
+
/**
|
|
479
|
+
* total balance for savings type accounts
|
|
480
|
+
*/
|
|
481
|
+
savings: number | null;
|
|
482
|
+
/**
|
|
483
|
+
* total incoming balance for savings type accounts
|
|
484
|
+
*/
|
|
485
|
+
incomingSavings: number | null;
|
|
486
|
+
/**
|
|
487
|
+
* e.g. '€'
|
|
488
|
+
*/
|
|
489
|
+
currency: string;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
interface BankAccountTransactionCounterpartyResponse {
|
|
493
|
+
label: string | null;
|
|
494
|
+
accountScheme: BankAccountSchemeNameEnum | null;
|
|
495
|
+
type: string | null;
|
|
496
|
+
}
|
|
497
|
+
|
|
497
498
|
interface PaginationResponse {
|
|
498
499
|
offset: number;
|
|
499
500
|
limit: number;
|
|
@@ -720,6 +721,19 @@ interface BudgetResponse {
|
|
|
720
721
|
currency: string;
|
|
721
722
|
}
|
|
722
723
|
|
|
724
|
+
interface SwipableBudgetResponse {
|
|
725
|
+
id: string;
|
|
726
|
+
budgetId: string;
|
|
727
|
+
expensesAllocations: BudgetExpensesAllocationResponse[];
|
|
728
|
+
incomesAllocations: BudgetIncomesAllocationResponse[];
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
interface SwipableBudgetsResponse {
|
|
732
|
+
previousBudget: SwipableBudgetResponse;
|
|
733
|
+
currentBudget: SwipableBudgetResponse;
|
|
734
|
+
nextBudget: SwipableBudgetResponse;
|
|
735
|
+
}
|
|
736
|
+
|
|
723
737
|
interface CoOwnerDeletedResponse {
|
|
724
738
|
deleted: boolean;
|
|
725
739
|
errorMessage: string | null;
|
|
@@ -876,4 +890,4 @@ declare class FilterArgs {
|
|
|
876
890
|
take: number;
|
|
877
891
|
}
|
|
878
892
|
|
|
879
|
-
export { type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, 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 BatchUpdateUserAssetInput, type BatchUpdateUserAssetsInput, 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 CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateBudgetSavingsAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TransactionAllocatedResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateArgs, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsBalancesResponse, type UserAssetsBatchUpdatedResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserCoOwnerResponse, type UserConsentResponse, type UserConsentsResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
|
893
|
+
export { type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, 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 BatchUpdateUserAssetInput, type BatchUpdateUserAssetsInput, 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 CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateBudgetSavingsAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type SwipableBudgetResponse, type SwipableBudgetsResponse, type TransactionAllocatedResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateArgs, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsBalancesResponse, type UserAssetsBatchUpdatedResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserCoOwnerResponse, type UserConsentResponse, type UserConsentsResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -370,34 +370,6 @@ interface LoanResponse {
|
|
|
370
370
|
currency: string;
|
|
371
371
|
}
|
|
372
372
|
|
|
373
|
-
interface TransactionAllocatedResponse {
|
|
374
|
-
allocated: boolean;
|
|
375
|
-
errorMessage: string | null;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
interface BankAccountBalancesResponse {
|
|
379
|
-
/**
|
|
380
|
-
* total balance for checking type accounts
|
|
381
|
-
*/
|
|
382
|
-
checking: number | null;
|
|
383
|
-
/**
|
|
384
|
-
* total incoming balance for checking type accounts
|
|
385
|
-
*/
|
|
386
|
-
incomingChecking: number | null;
|
|
387
|
-
/**
|
|
388
|
-
* total balance for savings type accounts
|
|
389
|
-
*/
|
|
390
|
-
savings: number | null;
|
|
391
|
-
/**
|
|
392
|
-
* total incoming balance for savings type accounts
|
|
393
|
-
*/
|
|
394
|
-
incomingSavings: number | null;
|
|
395
|
-
/**
|
|
396
|
-
* e.g. '€'
|
|
397
|
-
*/
|
|
398
|
-
currency: string;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
373
|
interface BankAccountOriginalTransactionResponse {
|
|
402
374
|
value: number;
|
|
403
375
|
currency: string;
|
|
@@ -405,12 +377,6 @@ interface BankAccountOriginalTransactionResponse {
|
|
|
405
377
|
commissionCurrency: string | null;
|
|
406
378
|
}
|
|
407
379
|
|
|
408
|
-
interface BankAccountTransactionCounterpartyResponse {
|
|
409
|
-
label: string | null;
|
|
410
|
-
accountScheme: BankAccountSchemeNameEnum | null;
|
|
411
|
-
type: string | null;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
380
|
interface AssetCoOwnerResponse {
|
|
415
381
|
id: string;
|
|
416
382
|
name: string;
|
|
@@ -494,6 +460,41 @@ interface BankAccountTransactionResponse {
|
|
|
494
460
|
allocated: Date | null;
|
|
495
461
|
}
|
|
496
462
|
|
|
463
|
+
interface TransactionAllocatedResponse {
|
|
464
|
+
transaction: BankAccountTransactionResponse;
|
|
465
|
+
allocated: boolean;
|
|
466
|
+
errorMessage: string | null;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
interface BankAccountBalancesResponse {
|
|
470
|
+
/**
|
|
471
|
+
* total balance for checking type accounts
|
|
472
|
+
*/
|
|
473
|
+
checking: number | null;
|
|
474
|
+
/**
|
|
475
|
+
* total incoming balance for checking type accounts
|
|
476
|
+
*/
|
|
477
|
+
incomingChecking: number | null;
|
|
478
|
+
/**
|
|
479
|
+
* total balance for savings type accounts
|
|
480
|
+
*/
|
|
481
|
+
savings: number | null;
|
|
482
|
+
/**
|
|
483
|
+
* total incoming balance for savings type accounts
|
|
484
|
+
*/
|
|
485
|
+
incomingSavings: number | null;
|
|
486
|
+
/**
|
|
487
|
+
* e.g. '€'
|
|
488
|
+
*/
|
|
489
|
+
currency: string;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
interface BankAccountTransactionCounterpartyResponse {
|
|
493
|
+
label: string | null;
|
|
494
|
+
accountScheme: BankAccountSchemeNameEnum | null;
|
|
495
|
+
type: string | null;
|
|
496
|
+
}
|
|
497
|
+
|
|
497
498
|
interface PaginationResponse {
|
|
498
499
|
offset: number;
|
|
499
500
|
limit: number;
|
|
@@ -720,6 +721,19 @@ interface BudgetResponse {
|
|
|
720
721
|
currency: string;
|
|
721
722
|
}
|
|
722
723
|
|
|
724
|
+
interface SwipableBudgetResponse {
|
|
725
|
+
id: string;
|
|
726
|
+
budgetId: string;
|
|
727
|
+
expensesAllocations: BudgetExpensesAllocationResponse[];
|
|
728
|
+
incomesAllocations: BudgetIncomesAllocationResponse[];
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
interface SwipableBudgetsResponse {
|
|
732
|
+
previousBudget: SwipableBudgetResponse;
|
|
733
|
+
currentBudget: SwipableBudgetResponse;
|
|
734
|
+
nextBudget: SwipableBudgetResponse;
|
|
735
|
+
}
|
|
736
|
+
|
|
723
737
|
interface CoOwnerDeletedResponse {
|
|
724
738
|
deleted: boolean;
|
|
725
739
|
errorMessage: string | null;
|
|
@@ -876,4 +890,4 @@ declare class FilterArgs {
|
|
|
876
890
|
take: number;
|
|
877
891
|
}
|
|
878
892
|
|
|
879
|
-
export { type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, 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 BatchUpdateUserAssetInput, type BatchUpdateUserAssetsInput, 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 CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateBudgetSavingsAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TransactionAllocatedResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateArgs, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsBalancesResponse, type UserAssetsBatchUpdatedResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserCoOwnerResponse, type UserConsentResponse, type UserConsentsResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
|
893
|
+
export { type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, 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 BatchUpdateUserAssetInput, type BatchUpdateUserAssetsInput, 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 CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, type CreateBudgetSavingsAllocationInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteBudgetExpensesAllocationInput, type DeleteBudgetIncomesAllocationInput, type DeleteUserCoOwnerInput, EMAIL_REGEX, type ExactMatch, FetchPowensConnectionsTypeEnum, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type LegalDocumentResponse, LegalDocumentTypeEnum, type LoanResponse, LoanTypeEnum, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationResponse, type PowensConnectWebviewResponse, type PowensConnectionDeletedResponse, type PowensConnectionResponse, PowensConnectionStateEnum, type PowensManageWebviewResponse, type PowensReconnectWebviewResponse, PowensUserStatusEnum, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, type StockExchangeResponse, SupportedCurrencyEnum, type SwipableBudgetResponse, type SwipableBudgetsResponse, type TransactionAllocatedResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateArgs, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsBalancesResponse, type UserAssetsBatchUpdatedResponse, type UserAssetsResponse, type UserAuthenticatedResponse, type UserBankAccountRefreshedResponse, type UserBankAccountsRefreshedResponse, type UserCoOwnerResponse, type UserConsentResponse, type UserConsentsResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|