@juhuu/sdk-ts 1.2.104 → 1.2.105
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -621,7 +621,7 @@ declare class PaymentsService extends Service {
|
|
621
621
|
search(PaymentSearchParams: JUHUU.Payment.Search.Params, PaymentSearchOptions?: JUHUU.Payment.Search.Options): Promise<JUHUU.HttpResponse<JUHUU.Payment.Search.Response>>;
|
622
622
|
tokens(PaymentTokensParams: JUHUU.Payment.Tokens.Params, PaymentTokensOptions?: JUHUU.Payment.Tokens.Options): Promise<JUHUU.HttpResponse<JUHUU.Payment.Tokens.Response>>;
|
623
623
|
retrieveInvoiceUrl(PaymentRetrieveInvoiceUrlParams: JUHUU.Payment.RetrieveInvoiceUrl.Params, PaymentRetrieveInvoiceUrlOptions?: JUHUU.Payment.RetrieveInvoiceUrl.Options): Promise<JUHUU.HttpResponse<JUHUU.Payment.RetrieveInvoiceUrl.Response>>;
|
624
|
-
|
624
|
+
capture(PaymentCaptureParams: JUHUU.Payment.Capture.Params, PaymentCaptureOptions?: JUHUU.Payment.Capture.Options): Promise<JUHUU.HttpResponse<JUHUU.Payment.Capture.Response>>;
|
625
625
|
}
|
626
626
|
|
627
627
|
declare class PropertiesService extends Service {
|
package/dist/index.d.ts
CHANGED
@@ -621,7 +621,7 @@ declare class PaymentsService extends Service {
|
|
621
621
|
search(PaymentSearchParams: JUHUU.Payment.Search.Params, PaymentSearchOptions?: JUHUU.Payment.Search.Options): Promise<JUHUU.HttpResponse<JUHUU.Payment.Search.Response>>;
|
622
622
|
tokens(PaymentTokensParams: JUHUU.Payment.Tokens.Params, PaymentTokensOptions?: JUHUU.Payment.Tokens.Options): Promise<JUHUU.HttpResponse<JUHUU.Payment.Tokens.Response>>;
|
623
623
|
retrieveInvoiceUrl(PaymentRetrieveInvoiceUrlParams: JUHUU.Payment.RetrieveInvoiceUrl.Params, PaymentRetrieveInvoiceUrlOptions?: JUHUU.Payment.RetrieveInvoiceUrl.Options): Promise<JUHUU.HttpResponse<JUHUU.Payment.RetrieveInvoiceUrl.Response>>;
|
624
|
-
|
624
|
+
capture(PaymentCaptureParams: JUHUU.Payment.Capture.Params, PaymentCaptureOptions?: JUHUU.Payment.Capture.Options): Promise<JUHUU.HttpResponse<JUHUU.Payment.Capture.Response>>;
|
625
625
|
}
|
626
626
|
|
627
627
|
declare class PropertiesService extends Service {
|
package/dist/index.js
CHANGED
@@ -764,7 +764,7 @@ var PaymentsService = class extends Service {
|
|
764
764
|
PaymentRetrieveInvoiceUrlOptions
|
765
765
|
);
|
766
766
|
}
|
767
|
-
async
|
767
|
+
async capture(PaymentCaptureParams, PaymentCaptureOptions) {
|
768
768
|
return await super.sendRequest(
|
769
769
|
{
|
770
770
|
method: "PATCH",
|
package/dist/index.mjs
CHANGED
@@ -720,7 +720,7 @@ var PaymentsService = class extends Service {
|
|
720
720
|
PaymentRetrieveInvoiceUrlOptions
|
721
721
|
);
|
722
722
|
}
|
723
|
-
async
|
723
|
+
async capture(PaymentCaptureParams, PaymentCaptureOptions) {
|
724
724
|
return await super.sendRequest(
|
725
725
|
{
|
726
726
|
method: "PATCH",
|