multicloud_rule_manager 1.1.71 → 1.1.73
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.
|
@@ -41,7 +41,7 @@ export default {
|
|
|
41
41
|
// =========================
|
|
42
42
|
console.log(" Chiamo products");
|
|
43
43
|
const productsResp = await fetch(
|
|
44
|
-
`https://${cred.realm}.bit2win.cloud/api/data/v1/
|
|
44
|
+
`https://${cred.realm}.bit2win.cloud/api/data/v1/rules/`,
|
|
45
45
|
{
|
|
46
46
|
method: "GET",
|
|
47
47
|
headers: {
|
|
@@ -250,6 +250,7 @@ export default {
|
|
|
250
250
|
|
|
251
251
|
async function safeJson(resp, label) {
|
|
252
252
|
const text = await resp.text();
|
|
253
|
+
console.log("RAW products:", resp);
|
|
253
254
|
console.log("RAW products:", text);
|
|
254
255
|
|
|
255
256
|
if (!resp.ok) {
|