sowhat-types 2.0.8 → 2.0.9
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 +17 -1
- package/dist/index.d.ts +17 -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;
|
|
@@ -198,8 +208,14 @@ interface BankAccountTransactionResponse {
|
|
|
198
208
|
extraData: BankAccountTransactionExtraDataResponse;
|
|
199
209
|
}
|
|
200
210
|
|
|
211
|
+
interface PaginationResponse {
|
|
212
|
+
offset: number;
|
|
213
|
+
limit: number;
|
|
214
|
+
}
|
|
215
|
+
|
|
201
216
|
interface BankAccountTransactionsResponse {
|
|
202
217
|
transactions: BankAccountTransactionResponse[];
|
|
218
|
+
pagination: PaginationResponse;
|
|
203
219
|
}
|
|
204
220
|
|
|
205
221
|
interface BankAccountResponse {
|
|
@@ -350,4 +366,4 @@ declare class FilterArgs {
|
|
|
350
366
|
take: number;
|
|
351
367
|
}
|
|
352
368
|
|
|
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 };
|
|
369
|
+
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;
|
|
@@ -198,8 +208,14 @@ interface BankAccountTransactionResponse {
|
|
|
198
208
|
extraData: BankAccountTransactionExtraDataResponse;
|
|
199
209
|
}
|
|
200
210
|
|
|
211
|
+
interface PaginationResponse {
|
|
212
|
+
offset: number;
|
|
213
|
+
limit: number;
|
|
214
|
+
}
|
|
215
|
+
|
|
201
216
|
interface BankAccountTransactionsResponse {
|
|
202
217
|
transactions: BankAccountTransactionResponse[];
|
|
218
|
+
pagination: PaginationResponse;
|
|
203
219
|
}
|
|
204
220
|
|
|
205
221
|
interface BankAccountResponse {
|
|
@@ -350,4 +366,4 @@ declare class FilterArgs {
|
|
|
350
366
|
take: number;
|
|
351
367
|
}
|
|
352
368
|
|
|
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 };
|
|
369
|
+
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 };
|