@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.
- package/dist/internal.d.cts +7 -0
- package/dist/internal.d.ts +7 -0
- package/package.json +1 -1
package/dist/internal.d.cts
CHANGED
|
@@ -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/dist/internal.d.ts
CHANGED
|
@@ -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;
|