sowhat-types 2.0.29 → 2.0.31

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
@@ -76,6 +76,12 @@ declare enum UserStatusEnum {
76
76
  BLACK_LISTED = "BLACK_LISTED"
77
77
  }
78
78
 
79
+ interface AllocateTransactionInput {
80
+ transactionId: string;
81
+ allocationId: string;
82
+ applicationDate: Date;
83
+ }
84
+
79
85
  interface PaginationInput {
80
86
  offset: number | null;
81
87
  limit: number | null;
@@ -142,6 +148,7 @@ interface LogoutUserInput {
142
148
  interface CreateBudgetExpensesAllocationInput {
143
149
  name: string;
144
150
  theoricalValuePerMonth: number;
151
+ currency: string;
145
152
  color: string;
146
153
  icon: string;
147
154
  note: string | null;
@@ -154,6 +161,7 @@ interface DeleteBudgetExpensesAllocationInput {
154
161
  interface CreateBudgetIncomesAllocationInput {
155
162
  name: string;
156
163
  theoricalValuePerMonth: number;
164
+ currency: string;
157
165
  color: string;
158
166
  icon: string;
159
167
  note: string | null;
@@ -203,6 +211,8 @@ interface BudgetIncomesAllocationResponse {
203
211
  icon: string;
204
212
  color: string;
205
213
  theoricalValuePerMonth: number;
214
+ value: number;
215
+ currency: string;
206
216
  note: string | null;
207
217
  updatedAt: Date | null;
208
218
  createdAt: Date;
@@ -459,4 +469,4 @@ declare class FilterArgs {
459
469
  take: number;
460
470
  }
461
471
 
462
- export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, 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 FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TransactionBudgetAllocationsResponse, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
472
+ export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, 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 FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TransactionBudgetAllocationsResponse, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
package/dist/index.d.ts CHANGED
@@ -76,6 +76,12 @@ declare enum UserStatusEnum {
76
76
  BLACK_LISTED = "BLACK_LISTED"
77
77
  }
78
78
 
79
+ interface AllocateTransactionInput {
80
+ transactionId: string;
81
+ allocationId: string;
82
+ applicationDate: Date;
83
+ }
84
+
79
85
  interface PaginationInput {
80
86
  offset: number | null;
81
87
  limit: number | null;
@@ -142,6 +148,7 @@ interface LogoutUserInput {
142
148
  interface CreateBudgetExpensesAllocationInput {
143
149
  name: string;
144
150
  theoricalValuePerMonth: number;
151
+ currency: string;
145
152
  color: string;
146
153
  icon: string;
147
154
  note: string | null;
@@ -154,6 +161,7 @@ interface DeleteBudgetExpensesAllocationInput {
154
161
  interface CreateBudgetIncomesAllocationInput {
155
162
  name: string;
156
163
  theoricalValuePerMonth: number;
164
+ currency: string;
157
165
  color: string;
158
166
  icon: string;
159
167
  note: string | null;
@@ -203,6 +211,8 @@ interface BudgetIncomesAllocationResponse {
203
211
  icon: string;
204
212
  color: string;
205
213
  theoricalValuePerMonth: number;
214
+ value: number;
215
+ currency: string;
206
216
  note: string | null;
207
217
  updatedAt: Date | null;
208
218
  createdAt: Date;
@@ -459,4 +469,4 @@ declare class FilterArgs {
459
469
  take: number;
460
470
  }
461
471
 
462
- export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, 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 FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TransactionBudgetAllocationsResponse, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
472
+ export { type AccessTokensResponse, type AllocateTransactionInput, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type BudgetExpensesAllocationDeletedResponse, type BudgetExpensesAllocationResponse, type BudgetExpensesAllocationsResponse, type BudgetIncomesAllocationDeletedResponse, type BudgetIncomesAllocationResponse, type BudgetIncomesAllocationsResponse, BudgetTypeEnum, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, 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 FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetDeletedResponse, type OtherAssetResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, SupportedCurrencyEnum, type TransactionBudgetAllocationsResponse, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.29",
3
+ "version": "2.0.31",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",