sowhat-types 2.0.28 → 2.0.30
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 +9 -3
- package/dist/index.d.ts +9 -3
- package/package.json +1 -1
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;
|
|
@@ -181,7 +187,6 @@ interface FetchUserCoOwnerInput {
|
|
|
181
187
|
|
|
182
188
|
interface BudgetExpensesAllocationResponse {
|
|
183
189
|
id: string;
|
|
184
|
-
userId: string;
|
|
185
190
|
name: string;
|
|
186
191
|
budget: string;
|
|
187
192
|
icon: string;
|
|
@@ -199,7 +204,6 @@ interface BudgetExpensesAllocationsResponse {
|
|
|
199
204
|
|
|
200
205
|
interface BudgetIncomesAllocationResponse {
|
|
201
206
|
id: string;
|
|
202
|
-
userId: string;
|
|
203
207
|
name: string;
|
|
204
208
|
budget: string;
|
|
205
209
|
icon: string;
|
|
@@ -274,6 +278,8 @@ interface BankAccountTransactionResponse {
|
|
|
274
278
|
type: BankAccountTransactionTypeEnum;
|
|
275
279
|
originalTransaction: BankAccountOriginalTransactionResponse | null;
|
|
276
280
|
country: string | null;
|
|
281
|
+
allocation: BudgetIncomesAllocationResponse | BudgetExpensesAllocationResponse | null;
|
|
282
|
+
allocated: Date | null;
|
|
277
283
|
}
|
|
278
284
|
|
|
279
285
|
interface PaginationResponse {
|
|
@@ -459,4 +465,4 @@ declare class FilterArgs {
|
|
|
459
465
|
take: number;
|
|
460
466
|
}
|
|
461
467
|
|
|
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 };
|
|
468
|
+
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;
|
|
@@ -181,7 +187,6 @@ interface FetchUserCoOwnerInput {
|
|
|
181
187
|
|
|
182
188
|
interface BudgetExpensesAllocationResponse {
|
|
183
189
|
id: string;
|
|
184
|
-
userId: string;
|
|
185
190
|
name: string;
|
|
186
191
|
budget: string;
|
|
187
192
|
icon: string;
|
|
@@ -199,7 +204,6 @@ interface BudgetExpensesAllocationsResponse {
|
|
|
199
204
|
|
|
200
205
|
interface BudgetIncomesAllocationResponse {
|
|
201
206
|
id: string;
|
|
202
|
-
userId: string;
|
|
203
207
|
name: string;
|
|
204
208
|
budget: string;
|
|
205
209
|
icon: string;
|
|
@@ -274,6 +278,8 @@ interface BankAccountTransactionResponse {
|
|
|
274
278
|
type: BankAccountTransactionTypeEnum;
|
|
275
279
|
originalTransaction: BankAccountOriginalTransactionResponse | null;
|
|
276
280
|
country: string | null;
|
|
281
|
+
allocation: BudgetIncomesAllocationResponse | BudgetExpensesAllocationResponse | null;
|
|
282
|
+
allocated: Date | null;
|
|
277
283
|
}
|
|
278
284
|
|
|
279
285
|
interface PaginationResponse {
|
|
@@ -459,4 +465,4 @@ declare class FilterArgs {
|
|
|
459
465
|
take: number;
|
|
460
466
|
}
|
|
461
467
|
|
|
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 };
|
|
468
|
+
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 };
|