sowhat-types 2.0.9 → 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 CHANGED
@@ -193,6 +193,7 @@ interface BankAccountTransactionResponse {
193
193
  id: string;
194
194
  accountId: string;
195
195
  date: Date;
196
+ applicationDate: string;
196
197
  value: number | null;
197
198
  currency: string | null;
198
199
  wording: BankAccountTransactionWordingResponse;
@@ -211,6 +212,7 @@ interface BankAccountTransactionResponse {
211
212
  interface PaginationResponse {
212
213
  offset: number;
213
214
  limit: number;
215
+ hasMore: boolean;
214
216
  }
215
217
 
216
218
  interface BankAccountTransactionsResponse {
package/dist/index.d.ts CHANGED
@@ -193,6 +193,7 @@ interface BankAccountTransactionResponse {
193
193
  id: string;
194
194
  accountId: string;
195
195
  date: Date;
196
+ applicationDate: string;
196
197
  value: number | null;
197
198
  currency: string | null;
198
199
  wording: BankAccountTransactionWordingResponse;
@@ -211,6 +212,7 @@ interface BankAccountTransactionResponse {
211
212
  interface PaginationResponse {
212
213
  offset: number;
213
214
  limit: number;
215
+ hasMore: boolean;
214
216
  }
215
217
 
216
218
  interface BankAccountTransactionsResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.9",
3
+ "version": "2.0.10",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",