@delopay/sdk 0.56.0 → 0.56.1

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.
@@ -171,7 +171,14 @@ interface AdminCustomerDetail {
171
171
  interface AdminTransactionListParams {
172
172
  merchant_id?: string | null;
173
173
  shop_id?: string | null;
174
+ payment_id?: string | null;
174
175
  status?: string | null;
176
+ /** `true` = test only, `false` = live only, omitted = both. */
177
+ test_mode?: boolean | null;
178
+ /** Inclusive lower bound on the payment amount, in minor units. */
179
+ start_amount?: number | null;
180
+ /** Inclusive upper bound on the payment amount, in minor units. */
181
+ end_amount?: number | null;
175
182
  start_date?: string | null;
176
183
  end_date?: string | null;
177
184
  offset?: number | null;
@@ -171,7 +171,14 @@ interface AdminCustomerDetail {
171
171
  interface AdminTransactionListParams {
172
172
  merchant_id?: string | null;
173
173
  shop_id?: string | null;
174
+ payment_id?: string | null;
174
175
  status?: string | null;
176
+ /** `true` = test only, `false` = live only, omitted = both. */
177
+ test_mode?: boolean | null;
178
+ /** Inclusive lower bound on the payment amount, in minor units. */
179
+ start_amount?: number | null;
180
+ /** Inclusive upper bound on the payment amount, in minor units. */
181
+ end_amount?: number | null;
175
182
  start_date?: string | null;
176
183
  end_date?: string | null;
177
184
  offset?: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delopay/sdk",
3
- "version": "0.56.0",
3
+ "version": "0.56.1",
4
4
  "description": "Official Delopay TypeScript SDK",
5
5
  "type": "module",
6
6
  "sideEffects": false,