gap-nodejs-sdk 1.0.213 → 1.0.214
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.
|
@@ -15,6 +15,6 @@ export default class Order extends Base implements OrderAbstractClass {
|
|
|
15
15
|
static submitPayment(data: Request.SubmitPaymentRequest): Promise<Response.SubmitPaymentResponse>;
|
|
16
16
|
static updatePaymentData(data: Request.UpdatePaymentDataRequest): Promise<Response.UpdatePaymentDataResponse>;
|
|
17
17
|
static addNote(data: Request.AddNoteRequest): Promise<Response.AddNoteResponse>;
|
|
18
|
-
static
|
|
18
|
+
static updatePaymentSignature(data: Request.UpdatePaymentSignatureRequest): Promise<Response.UpdatePaymentSignatureResponse>;
|
|
19
19
|
}
|
|
20
20
|
//# sourceMappingURL=order.d.ts.map
|
|
@@ -173,7 +173,7 @@ export default class Order extends Base {
|
|
|
173
173
|
return Model.SubmitCheckoutModel((_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.data);
|
|
174
174
|
});
|
|
175
175
|
}
|
|
176
|
-
static
|
|
176
|
+
static updatePaymentSignature(data) {
|
|
177
177
|
var _a;
|
|
178
178
|
return __awaiter(this, void 0, void 0, function* () {
|
|
179
179
|
const response = yield this.client.post({
|