sowhat-types 2.0.62 → 2.0.63
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 +31 -1
- package/dist/index.d.ts +31 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -191,6 +191,16 @@ interface DeleteBudgetExpensesAllocationInput {
|
|
|
191
191
|
id: string;
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
+
interface UpdateBudgetExpensesAllocationInput {
|
|
195
|
+
id: string;
|
|
196
|
+
name?: string;
|
|
197
|
+
icon?: string;
|
|
198
|
+
color?: string;
|
|
199
|
+
currency?: string;
|
|
200
|
+
theoricalValuePerMonth?: number;
|
|
201
|
+
bankAccountId?: string | null;
|
|
202
|
+
}
|
|
203
|
+
|
|
194
204
|
interface CreateBudgetIncomesAllocationInput {
|
|
195
205
|
name: string;
|
|
196
206
|
icon: string;
|
|
@@ -204,6 +214,16 @@ interface DeleteBudgetIncomesAllocationInput {
|
|
|
204
214
|
id: string;
|
|
205
215
|
}
|
|
206
216
|
|
|
217
|
+
interface UpdateBudgetIncomesAllocationInput {
|
|
218
|
+
id: string;
|
|
219
|
+
name?: string;
|
|
220
|
+
icon?: string;
|
|
221
|
+
color?: string;
|
|
222
|
+
currency?: string;
|
|
223
|
+
theoricalValuePerMonth?: number;
|
|
224
|
+
bankAccountId?: string | null;
|
|
225
|
+
}
|
|
226
|
+
|
|
207
227
|
interface UpdateUserInput {
|
|
208
228
|
currency?: AvailableCurrencyEnum;
|
|
209
229
|
consentToBudget?: boolean;
|
|
@@ -491,11 +511,21 @@ interface BudgetExpensesAllocationDeletedResponse {
|
|
|
491
511
|
errorMessage: string | null;
|
|
492
512
|
}
|
|
493
513
|
|
|
514
|
+
interface BudgetExpensesAllocationUpdatedResponse {
|
|
515
|
+
updated: boolean;
|
|
516
|
+
errorMessage: string | null;
|
|
517
|
+
}
|
|
518
|
+
|
|
494
519
|
interface BudgetIncomesAllocationDeletedResponse {
|
|
495
520
|
deleted: boolean;
|
|
496
521
|
errorMessage: string | null;
|
|
497
522
|
}
|
|
498
523
|
|
|
524
|
+
interface BudgetIncomesAllocationUpdatedResponse {
|
|
525
|
+
updated: boolean;
|
|
526
|
+
errorMessage: string | null;
|
|
527
|
+
}
|
|
528
|
+
|
|
499
529
|
interface BudgetSavingsAllocationResponse {
|
|
500
530
|
id: string;
|
|
501
531
|
name: string;
|
|
@@ -638,4 +668,4 @@ declare class FilterArgs {
|
|
|
638
668
|
take: number;
|
|
639
669
|
}
|
|
640
670
|
|
|
641
|
-
export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, type AuthenticationAccessResponse, AuthenticationMethodEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, type BudgetOperationResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, 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 LogoutUserInput, type LogoutUserResponse, 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, SortEnum, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsResponse, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
|
671
|
+
export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, type AuthenticationAccessResponse, AuthenticationMethodEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationUpdatedResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationUpdatedResponse, type BudgetIncomesAllocationsResponse, type BudgetOperationResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, 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 LogoutUserInput, type LogoutUserResponse, 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, SortEnum, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsResponse, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
package/dist/index.d.ts
CHANGED
|
@@ -191,6 +191,16 @@ interface DeleteBudgetExpensesAllocationInput {
|
|
|
191
191
|
id: string;
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
+
interface UpdateBudgetExpensesAllocationInput {
|
|
195
|
+
id: string;
|
|
196
|
+
name?: string;
|
|
197
|
+
icon?: string;
|
|
198
|
+
color?: string;
|
|
199
|
+
currency?: string;
|
|
200
|
+
theoricalValuePerMonth?: number;
|
|
201
|
+
bankAccountId?: string | null;
|
|
202
|
+
}
|
|
203
|
+
|
|
194
204
|
interface CreateBudgetIncomesAllocationInput {
|
|
195
205
|
name: string;
|
|
196
206
|
icon: string;
|
|
@@ -204,6 +214,16 @@ interface DeleteBudgetIncomesAllocationInput {
|
|
|
204
214
|
id: string;
|
|
205
215
|
}
|
|
206
216
|
|
|
217
|
+
interface UpdateBudgetIncomesAllocationInput {
|
|
218
|
+
id: string;
|
|
219
|
+
name?: string;
|
|
220
|
+
icon?: string;
|
|
221
|
+
color?: string;
|
|
222
|
+
currency?: string;
|
|
223
|
+
theoricalValuePerMonth?: number;
|
|
224
|
+
bankAccountId?: string | null;
|
|
225
|
+
}
|
|
226
|
+
|
|
207
227
|
interface UpdateUserInput {
|
|
208
228
|
currency?: AvailableCurrencyEnum;
|
|
209
229
|
consentToBudget?: boolean;
|
|
@@ -491,11 +511,21 @@ interface BudgetExpensesAllocationDeletedResponse {
|
|
|
491
511
|
errorMessage: string | null;
|
|
492
512
|
}
|
|
493
513
|
|
|
514
|
+
interface BudgetExpensesAllocationUpdatedResponse {
|
|
515
|
+
updated: boolean;
|
|
516
|
+
errorMessage: string | null;
|
|
517
|
+
}
|
|
518
|
+
|
|
494
519
|
interface BudgetIncomesAllocationDeletedResponse {
|
|
495
520
|
deleted: boolean;
|
|
496
521
|
errorMessage: string | null;
|
|
497
522
|
}
|
|
498
523
|
|
|
524
|
+
interface BudgetIncomesAllocationUpdatedResponse {
|
|
525
|
+
updated: boolean;
|
|
526
|
+
errorMessage: string | null;
|
|
527
|
+
}
|
|
528
|
+
|
|
499
529
|
interface BudgetSavingsAllocationResponse {
|
|
500
530
|
id: string;
|
|
501
531
|
name: string;
|
|
@@ -638,4 +668,4 @@ declare class FilterArgs {
|
|
|
638
668
|
take: number;
|
|
639
669
|
}
|
|
640
670
|
|
|
641
|
-
export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, type AuthenticationAccessResponse, AuthenticationMethodEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, type BudgetOperationResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, 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 LogoutUserInput, type LogoutUserResponse, 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, SortEnum, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsResponse, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|
|
671
|
+
export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerInput, type AssetCoOwnerResponse, AssetTypeEnum, type AuthenticationAccessResponse, AuthenticationMethodEnum, AvailableCurrencyEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountUpdatedResponse, type BankAccountsBatchUpdatedResponse, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationUpdatedResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationUpdatedResponse, type BudgetIncomesAllocationsResponse, type BudgetOperationResponse, type BudgetSavingsAllocationResponse, type BudgetSavingsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CoOwnerUpdatedResponse, type CreateBudgetExpensesAllocationInput, type CreateBudgetIncomesAllocationInput, 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 LogoutUserInput, type LogoutUserResponse, 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, SortEnum, type StockExchangeResponse, SupportedCurrencyEnum, type TimePaginationInput, type TimePaginationResponse, type TransactionBudgetAllocationsResponse, type UpdateBankAccountInput, type UpdateBankAccountTransactionInput, type UpdateBudgetExpensesAllocationInput, type UpdateBudgetIncomesAllocationInput, type UpdateMobilityInput, type UpdateOtherAssetInput, type UpdateRealEstateInput, type UpdateUserCoOwnerInput, type UpdateUserInput, type UserAssetsResponse, type UserCoOwnerResponse, type UserProfileResponse, type UserReportResponse, type UserStatisticsResponse, UserStatusEnum, type UserUpdatedResponse };
|