@juhuu/sdk-ts 1.2.101 → 1.2.102
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.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2478,6 +2478,9 @@ var PaymentRefundsService = class extends Service {
|
|
2478
2478
|
if (PaymentRefundListParams.skip !== void 0) {
|
2479
2479
|
queryArray.push("skip=" + PaymentRefundListParams.skip);
|
2480
2480
|
}
|
2481
|
+
if (PaymentRefundListParams.paymentId !== void 0) {
|
2482
|
+
queryArray.push("paymentId=" + PaymentRefundListParams.paymentId);
|
2483
|
+
}
|
2481
2484
|
return await super.sendRequest(
|
2482
2485
|
{
|
2483
2486
|
method: "GET",
|
package/dist/index.mjs
CHANGED
@@ -2434,6 +2434,9 @@ var PaymentRefundsService = class extends Service {
|
|
2434
2434
|
if (PaymentRefundListParams.skip !== void 0) {
|
2435
2435
|
queryArray.push("skip=" + PaymentRefundListParams.skip);
|
2436
2436
|
}
|
2437
|
+
if (PaymentRefundListParams.paymentId !== void 0) {
|
2438
|
+
queryArray.push("paymentId=" + PaymentRefundListParams.paymentId);
|
2439
|
+
}
|
2437
2440
|
return await super.sendRequest(
|
2438
2441
|
{
|
2439
2442
|
method: "GET",
|