@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.
@@ -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[];
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delopay/sdk",
3
- "version": "0.71.0",
3
+ "version": "0.72.0",
4
4
  "description": "Official Delopay TypeScript SDK",
5
5
  "type": "module",
6
6
  "sideEffects": false,