@juhuu/sdk-ts 1.2.214 → 1.2.216
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.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -2684,6 +2684,11 @@ declare namespace JUHUU {
|
|
2684
2684
|
capturedBy: "system" | "propertyAdmin" | null;
|
2685
2685
|
capturedByUserId: string | null;
|
2686
2686
|
refundLevel: "none" | "partial" | "full";
|
2687
|
+
cancelledAt: Date | null;
|
2688
|
+
cancelledByUserId: string | null;
|
2689
|
+
cancelledBy: "system" | "propertyAdmin" | "user" | null;
|
2690
|
+
cancelledReason: "sessionTermination" | "cleanUpCronJob" | "cleanUpSchedulerJob" | "userRequest" | null;
|
2691
|
+
postingRowArray: PostingRow[];
|
2687
2692
|
};
|
2688
2693
|
namespace Retrieve {
|
2689
2694
|
type Params = {
|
package/dist/index.d.ts
CHANGED
@@ -2684,6 +2684,11 @@ declare namespace JUHUU {
|
|
2684
2684
|
capturedBy: "system" | "propertyAdmin" | null;
|
2685
2685
|
capturedByUserId: string | null;
|
2686
2686
|
refundLevel: "none" | "partial" | "full";
|
2687
|
+
cancelledAt: Date | null;
|
2688
|
+
cancelledByUserId: string | null;
|
2689
|
+
cancelledBy: "system" | "propertyAdmin" | "user" | null;
|
2690
|
+
cancelledReason: "sessionTermination" | "cleanUpCronJob" | "cleanUpSchedulerJob" | "userRequest" | null;
|
2691
|
+
postingRowArray: PostingRow[];
|
2687
2692
|
};
|
2688
2693
|
namespace Retrieve {
|
2689
2694
|
type Params = {
|
package/dist/index.js
CHANGED
@@ -940,7 +940,10 @@ var PaymentsService = class extends Service {
|
|
940
940
|
{
|
941
941
|
method: "PATCH",
|
942
942
|
url: "payments/" + PaymentCaptureParams.paymentId + "/capture",
|
943
|
-
body:
|
943
|
+
body: {
|
944
|
+
customAmount: PaymentCaptureParams.customAmount,
|
945
|
+
mode: PaymentCaptureParams.mode
|
946
|
+
},
|
944
947
|
authenticationNotOptional: true
|
945
948
|
},
|
946
949
|
PaymentCaptureOptions
|
package/dist/index.mjs
CHANGED
@@ -896,7 +896,10 @@ var PaymentsService = class extends Service {
|
|
896
896
|
{
|
897
897
|
method: "PATCH",
|
898
898
|
url: "payments/" + PaymentCaptureParams.paymentId + "/capture",
|
899
|
-
body:
|
899
|
+
body: {
|
900
|
+
customAmount: PaymentCaptureParams.customAmount,
|
901
|
+
mode: PaymentCaptureParams.mode
|
902
|
+
},
|
900
903
|
authenticationNotOptional: true
|
901
904
|
},
|
902
905
|
PaymentCaptureOptions
|