sowhat-types 2.0.23 → 2.0.25

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
@@ -214,6 +214,7 @@ interface BankAccountTransactionResponse {
214
214
  name: string;
215
215
  coming: boolean;
216
216
  active: boolean;
217
+ cardNumber: string | null;
217
218
  note: string | null;
218
219
  lastUpdate: Date | null;
219
220
  deleted: Date | null;
@@ -223,9 +224,11 @@ interface BankAccountTransactionResponse {
223
224
  }
224
225
 
225
226
  interface PaginationResponse {
226
- offset: number;
227
- limit: number;
227
+ offset: number | null;
228
+ limit: number | null;
228
229
  hasMore: boolean;
230
+ startDate: Date | null;
231
+ endDate: Date | null;
229
232
  }
230
233
 
231
234
  interface BankAccountTransactionsResponse {
package/dist/index.d.ts CHANGED
@@ -214,6 +214,7 @@ interface BankAccountTransactionResponse {
214
214
  name: string;
215
215
  coming: boolean;
216
216
  active: boolean;
217
+ cardNumber: string | null;
217
218
  note: string | null;
218
219
  lastUpdate: Date | null;
219
220
  deleted: Date | null;
@@ -223,9 +224,11 @@ interface BankAccountTransactionResponse {
223
224
  }
224
225
 
225
226
  interface PaginationResponse {
226
- offset: number;
227
- limit: number;
227
+ offset: number | null;
228
+ limit: number | null;
228
229
  hasMore: boolean;
230
+ startDate: Date | null;
231
+ endDate: Date | null;
229
232
  }
230
233
 
231
234
  interface BankAccountTransactionsResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowhat-types",
3
- "version": "2.0.23",
3
+ "version": "2.0.25",
4
4
  "description": "Sowhat types",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",