sowhat-types 2.0.12 → 2.0.13
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 +42 -1
- package/dist/index.d.ts +42 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -101,6 +101,47 @@ interface PaginationInput {
|
|
|
101
101
|
limit: number;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
+
interface FetchBankAccountTransactionsInput {
|
|
105
|
+
accountId: string;
|
|
106
|
+
pagination: PaginationInput;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
interface UpdateBankAccountTransactionInput {
|
|
110
|
+
id: string;
|
|
111
|
+
newName?: string;
|
|
112
|
+
newApplicationDate?: Date;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
interface CreateMobilityInput {
|
|
116
|
+
customTitle: string;
|
|
117
|
+
customImage: string | null;
|
|
118
|
+
price: number;
|
|
119
|
+
licenceNumber: string | null;
|
|
120
|
+
dateOfAcquisition: CreateAssetDateOfAcquisitionInput | null;
|
|
121
|
+
mobilityType: MobilityTypeEnum;
|
|
122
|
+
mileage: number | null;
|
|
123
|
+
note: string | null;
|
|
124
|
+
gotLoan: boolean;
|
|
125
|
+
coOwner: CreateAssetCoOwnerInput | null;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
interface CreateRealEstateInput {
|
|
129
|
+
gotLoan: boolean;
|
|
130
|
+
customTitle: string;
|
|
131
|
+
customImage: string | null;
|
|
132
|
+
price: number;
|
|
133
|
+
note: string | null;
|
|
134
|
+
isMainResidence: boolean;
|
|
135
|
+
coOwner: CreateAssetCoOwnerInput | null;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
interface CreateOtherAssetInput {
|
|
139
|
+
name: string;
|
|
140
|
+
imageUrl: string | null;
|
|
141
|
+
value: number;
|
|
142
|
+
note: string | null;
|
|
143
|
+
}
|
|
144
|
+
|
|
104
145
|
interface BankAccountBalancesResponse {
|
|
105
146
|
/**
|
|
106
147
|
* total balance for checking type accounts
|
|
@@ -343,4 +384,4 @@ declare class FilterArgs {
|
|
|
343
384
|
take: number;
|
|
344
385
|
}
|
|
345
386
|
|
|
346
|
-
export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, 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, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
|
|
387
|
+
export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, 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, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -101,6 +101,47 @@ interface PaginationInput {
|
|
|
101
101
|
limit: number;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
+
interface FetchBankAccountTransactionsInput {
|
|
105
|
+
accountId: string;
|
|
106
|
+
pagination: PaginationInput;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
interface UpdateBankAccountTransactionInput {
|
|
110
|
+
id: string;
|
|
111
|
+
newName?: string;
|
|
112
|
+
newApplicationDate?: Date;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
interface CreateMobilityInput {
|
|
116
|
+
customTitle: string;
|
|
117
|
+
customImage: string | null;
|
|
118
|
+
price: number;
|
|
119
|
+
licenceNumber: string | null;
|
|
120
|
+
dateOfAcquisition: CreateAssetDateOfAcquisitionInput | null;
|
|
121
|
+
mobilityType: MobilityTypeEnum;
|
|
122
|
+
mileage: number | null;
|
|
123
|
+
note: string | null;
|
|
124
|
+
gotLoan: boolean;
|
|
125
|
+
coOwner: CreateAssetCoOwnerInput | null;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
interface CreateRealEstateInput {
|
|
129
|
+
gotLoan: boolean;
|
|
130
|
+
customTitle: string;
|
|
131
|
+
customImage: string | null;
|
|
132
|
+
price: number;
|
|
133
|
+
note: string | null;
|
|
134
|
+
isMainResidence: boolean;
|
|
135
|
+
coOwner: CreateAssetCoOwnerInput | null;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
interface CreateOtherAssetInput {
|
|
139
|
+
name: string;
|
|
140
|
+
imageUrl: string | null;
|
|
141
|
+
value: number;
|
|
142
|
+
note: string | null;
|
|
143
|
+
}
|
|
144
|
+
|
|
104
145
|
interface BankAccountBalancesResponse {
|
|
105
146
|
/**
|
|
106
147
|
* total balance for checking type accounts
|
|
@@ -343,4 +384,4 @@ declare class FilterArgs {
|
|
|
343
384
|
take: number;
|
|
344
385
|
}
|
|
345
386
|
|
|
346
|
-
export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, 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, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
|
|
387
|
+
export { type AccessTokensResponse, type AssetCoOwnerResponse, type AssetDateOfAcquisitionResponse, AssetTypeEnum, type AssetsResponse, type AuthenticationAccessResponse, AuthenticationMethodEnum, type BankAccountBalancesResponse, type BankAccountOriginalTransactionResponse, type BankAccountResponse, BankAccountSchemeNameEnum, type BankAccountTransactionCounterpartyResponse, type BankAccountTransactionExtraDataResponse, type BankAccountTransactionResponse, BankAccountTransactionTypeEnum, type BankAccountTransactionWordingResponse, type BankAccountTransactionsResponse, BankAccountTypeEnum, type BankAccountsResponse, type CoOwnerDeletedResponse, type CoOwnerResponse, type CreateAssetCoOwnerInput, type CreateAssetDateOfAcquisitionInput, type CreateMobilityInput, type CreateOtherAssetInput, type CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, 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, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
|