@frontegg/rest-api 3.1.7 → 3.1.8
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/constants.js +2 -2
- package/index.js +1 -1
- package/node/constants.js +2 -2
- package/node/index.js +1 -1
- package/package.json +1 -1
package/constants.js
CHANGED
|
@@ -245,10 +245,10 @@ export const urls = {
|
|
|
245
245
|
},
|
|
246
246
|
securityCenter: {
|
|
247
247
|
recommendations: {
|
|
248
|
-
v1: '/security-center/resources/v1
|
|
248
|
+
v1: '/security-center/resources/recommendations/v1'
|
|
249
249
|
},
|
|
250
250
|
insights: {
|
|
251
|
-
v1: '/security-center/resources/v1
|
|
251
|
+
v1: '/security-center/resources/insights/v1'
|
|
252
252
|
}
|
|
253
253
|
}
|
|
254
254
|
};
|
package/index.js
CHANGED
package/node/constants.js
CHANGED
|
@@ -251,10 +251,10 @@ const urls = {
|
|
|
251
251
|
},
|
|
252
252
|
securityCenter: {
|
|
253
253
|
recommendations: {
|
|
254
|
-
v1: '/security-center/resources/v1
|
|
254
|
+
v1: '/security-center/resources/recommendations/v1'
|
|
255
255
|
},
|
|
256
256
|
insights: {
|
|
257
|
-
v1: '/security-center/resources/v1
|
|
257
|
+
v1: '/security-center/resources/insights/v1'
|
|
258
258
|
}
|
|
259
259
|
}
|
|
260
260
|
};
|
package/node/index.js
CHANGED