@cakemail-org/ui-components-v2 2.1.47 → 2.1.48
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/cjs/index.js +1 -2
- package/dist/esm/index.js +1 -2
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -10478,10 +10478,9 @@ function listSuppressedEmails(_a) {
|
|
|
10478
10478
|
function deleteSuppressedEmail(_a) {
|
|
10479
10479
|
var email = _a.email;
|
|
10480
10480
|
return callApi({
|
|
10481
|
-
url: uiKitConfig.GATEWAY_PROXY + "/suppressed-emails",
|
|
10481
|
+
url: uiKitConfig.GATEWAY_PROXY + "/suppressed-emails/" + email,
|
|
10482
10482
|
fetchOptions: {
|
|
10483
10483
|
method: exports.EMethods.delete,
|
|
10484
|
-
body: { email: email }
|
|
10485
10484
|
}
|
|
10486
10485
|
});
|
|
10487
10486
|
}
|
package/dist/esm/index.js
CHANGED
|
@@ -10458,10 +10458,9 @@ function listSuppressedEmails(_a) {
|
|
|
10458
10458
|
function deleteSuppressedEmail(_a) {
|
|
10459
10459
|
var email = _a.email;
|
|
10460
10460
|
return callApi({
|
|
10461
|
-
url: uiKitConfig.GATEWAY_PROXY + "/suppressed-emails",
|
|
10461
|
+
url: uiKitConfig.GATEWAY_PROXY + "/suppressed-emails/" + email,
|
|
10462
10462
|
fetchOptions: {
|
|
10463
10463
|
method: EMethods.delete,
|
|
10464
|
-
body: { email: email }
|
|
10465
10464
|
}
|
|
10466
10465
|
});
|
|
10467
10466
|
}
|