sowhat-types 2.0.8 → 2.0.10
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 +19 -1
- package/dist/index.d.ts +19 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -76,6 +76,16 @@ interface CreateAssetDateOfAcquisitionInput {
|
|
|
76
76
|
year: number;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
+
interface PaginationInput {
|
|
80
|
+
offset: number;
|
|
81
|
+
limit: number;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
interface FetchBankAccountTransactionsInput {
|
|
85
|
+
accountId: string;
|
|
86
|
+
pagination: PaginationInput;
|
|
87
|
+
}
|
|
88
|
+
|
|
79
89
|
interface UpdateBankAccountTransactionInput {
|
|
80
90
|
id: string;
|
|
81
91
|
newName?: string;
|
|
@@ -183,6 +193,7 @@ interface BankAccountTransactionResponse {
|
|
|
183
193
|
id: string;
|
|
184
194
|
accountId: string;
|
|
185
195
|
date: Date;
|
|
196
|
+
applicationDate: string;
|
|
186
197
|
value: number | null;
|
|
187
198
|
currency: string | null;
|
|
188
199
|
wording: BankAccountTransactionWordingResponse;
|
|
@@ -198,8 +209,15 @@ interface BankAccountTransactionResponse {
|
|
|
198
209
|
extraData: BankAccountTransactionExtraDataResponse;
|
|
199
210
|
}
|
|
200
211
|
|
|
212
|
+
interface PaginationResponse {
|
|
213
|
+
offset: number;
|
|
214
|
+
limit: number;
|
|
215
|
+
hasMore: boolean;
|
|
216
|
+
}
|
|
217
|
+
|
|
201
218
|
interface BankAccountTransactionsResponse {
|
|
202
219
|
transactions: BankAccountTransactionResponse[];
|
|
220
|
+
pagination: PaginationResponse;
|
|
203
221
|
}
|
|
204
222
|
|
|
205
223
|
interface BankAccountResponse {
|
|
@@ -350,4 +368,4 @@ declare class FilterArgs {
|
|
|
350
368
|
take: number;
|
|
351
369
|
}
|
|
352
370
|
|
|
353
|
-
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 CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
|
|
371
|
+
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 CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, 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
|
@@ -76,6 +76,16 @@ interface CreateAssetDateOfAcquisitionInput {
|
|
|
76
76
|
year: number;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
+
interface PaginationInput {
|
|
80
|
+
offset: number;
|
|
81
|
+
limit: number;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
interface FetchBankAccountTransactionsInput {
|
|
85
|
+
accountId: string;
|
|
86
|
+
pagination: PaginationInput;
|
|
87
|
+
}
|
|
88
|
+
|
|
79
89
|
interface UpdateBankAccountTransactionInput {
|
|
80
90
|
id: string;
|
|
81
91
|
newName?: string;
|
|
@@ -183,6 +193,7 @@ interface BankAccountTransactionResponse {
|
|
|
183
193
|
id: string;
|
|
184
194
|
accountId: string;
|
|
185
195
|
date: Date;
|
|
196
|
+
applicationDate: string;
|
|
186
197
|
value: number | null;
|
|
187
198
|
currency: string | null;
|
|
188
199
|
wording: BankAccountTransactionWordingResponse;
|
|
@@ -198,8 +209,15 @@ interface BankAccountTransactionResponse {
|
|
|
198
209
|
extraData: BankAccountTransactionExtraDataResponse;
|
|
199
210
|
}
|
|
200
211
|
|
|
212
|
+
interface PaginationResponse {
|
|
213
|
+
offset: number;
|
|
214
|
+
limit: number;
|
|
215
|
+
hasMore: boolean;
|
|
216
|
+
}
|
|
217
|
+
|
|
201
218
|
interface BankAccountTransactionsResponse {
|
|
202
219
|
transactions: BankAccountTransactionResponse[];
|
|
220
|
+
pagination: PaginationResponse;
|
|
203
221
|
}
|
|
204
222
|
|
|
205
223
|
interface BankAccountResponse {
|
|
@@ -350,4 +368,4 @@ declare class FilterArgs {
|
|
|
350
368
|
take: number;
|
|
351
369
|
}
|
|
352
370
|
|
|
353
|
-
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 CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
|
|
371
|
+
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 CreateRealEstateInput, type CreateUserCoOwnerInput, type CryptocurrencyResponse, type DeleteUserCoOwnerInput, type ExactMatch, type FetchBankAccountTransactionsInput, type FetchUserCoOwnerInput, FilterArgs, type LogoutUserInput, type LogoutUserResponse, type MobilityDeletedResponse, type MobilityResponse, MobilityTypeEnum, type OtherAssetResponse, type PaginationInput, type PaginationResponse, PowensUserStatusEnum, type PowensWebviewConnectionResponse, type RealEstateDeletedResponse, type RealEstateResponse, type StockExchangeResponse, type UpdateBankAccountTransactionInput, type UserCoOwnerResponse, type UserResponse, UserStatusEnum };
|