From 3f761f947369a6aa143777da64ab3fb82eefe2a7 Mon Sep 17 00:00:00 2001 From: DanielRufino Date: Mon, 6 Nov 2023 14:55:06 -0300 Subject: [PATCH] Name chance --- lib/amplia-client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/amplia-client.js b/lib/amplia-client.js index f5680b1..e487516 100644 --- a/lib/amplia-client.js +++ b/lib/amplia-client.js @@ -242,7 +242,7 @@ class AmpliaClient { * @param {number} keySize the size of the key for this certificate * @returns {IssueSoftwareCertificateResponse} the response containing the certificate in many formats */ - issuePkcs12Certificate(orderId, password, keySize = null) { + issueSoftwareCertificate(orderId, password, keySize = null) { return new Promise((resolve, reject) => { let client = this._getRestClient(); let request = new IssueSoftwareCertificateRequest({ orderId, password, keySize });