@delopay/sdk 0.71.0 → 0.72.0
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/internal.d.cts +5 -0
- package/dist/internal.d.ts +5 -0
- package/package.json +1 -1
package/dist/internal.d.cts
CHANGED
|
@@ -189,6 +189,11 @@ interface AdminTransactionListParams {
|
|
|
189
189
|
end_date?: string | null;
|
|
190
190
|
offset?: number | null;
|
|
191
191
|
limit?: number | null;
|
|
192
|
+
/** Column to sort by: `amount`, `created`, `modified`, `status`, `shop`,
|
|
193
|
+
* `customer`. Defaults to `created`. */
|
|
194
|
+
sort_on?: string | null;
|
|
195
|
+
/** Sort direction: `asc` or `desc`. Defaults to `desc`. */
|
|
196
|
+
sort_by?: string | null;
|
|
192
197
|
}
|
|
193
198
|
interface AdminTransactionListResponse {
|
|
194
199
|
data: PaymentResponse[];
|
package/dist/internal.d.ts
CHANGED
|
@@ -189,6 +189,11 @@ interface AdminTransactionListParams {
|
|
|
189
189
|
end_date?: string | null;
|
|
190
190
|
offset?: number | null;
|
|
191
191
|
limit?: number | null;
|
|
192
|
+
/** Column to sort by: `amount`, `created`, `modified`, `status`, `shop`,
|
|
193
|
+
* `customer`. Defaults to `created`. */
|
|
194
|
+
sort_on?: string | null;
|
|
195
|
+
/** Sort direction: `asc` or `desc`. Defaults to `desc`. */
|
|
196
|
+
sort_by?: string | null;
|
|
192
197
|
}
|
|
193
198
|
interface AdminTransactionListResponse {
|
|
194
199
|
data: PaymentResponse[];
|