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 +5 -2
- package/dist/index.d.ts +5 -2
- package/package.json +1 -1
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 {
|