sowhat-types 2.0.40 → 2.0.41
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 +6 -6
- package/dist/index.d.ts +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -88,12 +88,7 @@ interface AllocateTransactionInput {
|
|
|
88
88
|
applicationDate: Date;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
interface
|
|
92
|
-
offset: number;
|
|
93
|
-
limit: number;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
interface TimePaginationInput extends PaginationInput {
|
|
91
|
+
interface TimePaginationInput {
|
|
97
92
|
startDate: Date;
|
|
98
93
|
endDate: Date;
|
|
99
94
|
}
|
|
@@ -195,6 +190,11 @@ interface FetchUserCoOwnerInput {
|
|
|
195
190
|
coOwnerId: string;
|
|
196
191
|
}
|
|
197
192
|
|
|
193
|
+
interface PaginationInput {
|
|
194
|
+
offset: number;
|
|
195
|
+
limit: number;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
198
|
interface BankAccountOriginalTransactionResponse {
|
|
199
199
|
value: number;
|
|
200
200
|
currency: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -88,12 +88,7 @@ interface AllocateTransactionInput {
|
|
|
88
88
|
applicationDate: Date;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
interface
|
|
92
|
-
offset: number;
|
|
93
|
-
limit: number;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
interface TimePaginationInput extends PaginationInput {
|
|
91
|
+
interface TimePaginationInput {
|
|
97
92
|
startDate: Date;
|
|
98
93
|
endDate: Date;
|
|
99
94
|
}
|
|
@@ -195,6 +190,11 @@ interface FetchUserCoOwnerInput {
|
|
|
195
190
|
coOwnerId: string;
|
|
196
191
|
}
|
|
197
192
|
|
|
193
|
+
interface PaginationInput {
|
|
194
|
+
offset: number;
|
|
195
|
+
limit: number;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
198
|
interface BankAccountOriginalTransactionResponse {
|
|
199
199
|
value: number;
|
|
200
200
|
currency: string;
|