sowhat-types 2.0.67 → 2.0.69
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 +4 -22
- package/dist/index.d.ts +4 -22
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -174,10 +174,6 @@ interface UpdateOtherAssetInput {
|
|
|
174
174
|
gotLoan?: boolean;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
-
interface LogoutUserInput {
|
|
178
|
-
userId: string;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
177
|
interface CreateBudgetExpensesAllocationInput {
|
|
182
178
|
name: string;
|
|
183
179
|
icon: string;
|
|
@@ -249,9 +245,6 @@ interface UpdateBudgetSavingsAllocationInput {
|
|
|
249
245
|
name?: string;
|
|
250
246
|
icon?: string;
|
|
251
247
|
color?: string;
|
|
252
|
-
theoricalValuePerMonth?: number;
|
|
253
|
-
balance?: number;
|
|
254
|
-
currency?: string;
|
|
255
248
|
}
|
|
256
249
|
|
|
257
250
|
interface UpdateUserInput {
|
|
@@ -510,23 +503,12 @@ interface StockExchangeResponse {
|
|
|
510
503
|
id: string;
|
|
511
504
|
}
|
|
512
505
|
|
|
513
|
-
interface
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
refreshToken: string;
|
|
517
|
-
}
|
|
518
|
-
|
|
519
|
-
interface AuthenticationAccessResponse extends AccessTokensResponse {
|
|
520
|
-
userId: string;
|
|
521
|
-
isLogged: boolean;
|
|
506
|
+
interface UserAuthenticatedResponse {
|
|
507
|
+
authenticated: boolean;
|
|
508
|
+
errorMessage: string | null;
|
|
522
509
|
hasPincode: boolean;
|
|
523
510
|
}
|
|
524
511
|
|
|
525
|
-
interface LogoutUserResponse {
|
|
526
|
-
userId: string;
|
|
527
|
-
isLoggedOut: boolean;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
512
|
interface BudgetExpensesAllocationDeletedResponse {
|
|
531
513
|
deleted: boolean;
|
|
532
514
|
errorMessage: string | null;
|
|
@@ -699,4 +681,4 @@ declare class FilterArgs {
|
|
|
699
681
|
take: number;
|
|
700
682
|
}
|
|
701
683
|
|
|
702
|
-
export { type
|
|
684
|
+
export { type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCurrencyEnum, 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 BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationUpdatedResponse, type BudgetIncomesAllocationsResponse, 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, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchBankAccountsListInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, SortEnum, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsResponse, type UserAuthenticatedResponse, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -174,10 +174,6 @@ interface UpdateOtherAssetInput {
|
|
|
174
174
|
gotLoan?: boolean;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
-
interface LogoutUserInput {
|
|
178
|
-
userId: string;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
177
|
interface CreateBudgetExpensesAllocationInput {
|
|
182
178
|
name: string;
|
|
183
179
|
icon: string;
|
|
@@ -249,9 +245,6 @@ interface UpdateBudgetSavingsAllocationInput {
|
|
|
249
245
|
name?: string;
|
|
250
246
|
icon?: string;
|
|
251
247
|
color?: string;
|
|
252
|
-
theoricalValuePerMonth?: number;
|
|
253
|
-
balance?: number;
|
|
254
|
-
currency?: string;
|
|
255
248
|
}
|
|
256
249
|
|
|
257
250
|
interface UpdateUserInput {
|
|
@@ -510,23 +503,12 @@ interface StockExchangeResponse {
|
|
|
510
503
|
id: string;
|
|
511
504
|
}
|
|
512
505
|
|
|
513
|
-
interface
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
refreshToken: string;
|
|
517
|
-
}
|
|
518
|
-
|
|
519
|
-
interface AuthenticationAccessResponse extends AccessTokensResponse {
|
|
520
|
-
userId: string;
|
|
521
|
-
isLogged: boolean;
|
|
506
|
+
interface UserAuthenticatedResponse {
|
|
507
|
+
authenticated: boolean;
|
|
508
|
+
errorMessage: string | null;
|
|
522
509
|
hasPincode: boolean;
|
|
523
510
|
}
|
|
524
511
|
|
|
525
|
-
interface LogoutUserResponse {
|
|
526
|
-
userId: string;
|
|
527
|
-
isLoggedOut: boolean;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
512
|
interface BudgetExpensesAllocationDeletedResponse {
|
|
531
513
|
deleted: boolean;
|
|
532
514
|
errorMessage: string | null;
|
|
@@ -699,4 +681,4 @@ declare class FilterArgs {
|
|
|
699
681
|
take: number;
|
|
700
682
|
}
|
|
701
683
|
|
|
702
|
-
export { type
|
|
684
|
+
export { type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, AuthenticationMethodEnum, AvailableCurrencyEnum, 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 BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationUpdatedResponse, type BudgetIncomesAllocationsResponse, 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, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchBankAccountsListInput, type FetchUserCoOwnerInput, FilterArgs, type GlobalWealthStatisticsResponse, type MobilityDeletedResponse, type MobilityResponse, type MobilityUpdatedResponse, type OtherAssetDeletedResponse, type OtherAssetResponse, type OtherAssetUpdatedResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type RealEstateUpdatedResponse, type ReportBudgetResponse, type ReportValueResponse, type ReportWealthResponse, type SavingsMonthlyOperationResponse, SortEnum, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateBudgetSavingsAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsResponse, type UserAuthenticatedResponse, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserSavingsBudgetResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|