@adobe/spacecat-shared-rum-api-client 1.4.2 → 1.4.3

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [@adobe/spacecat-shared-rum-api-client-v1.4.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v1.4.2...@adobe/spacecat-shared-rum-api-client-v1.4.3) (2024-01-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * run 404 rum sources query with interval 7 ([ace5978](https://github.com/adobe/spacecat-shared/commit/ace59781e963c2269d01161be1883589d5d78802))
7
+
1
8
  # [@adobe/spacecat-shared-rum-api-client-v1.4.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v1.4.1...@adobe/spacecat-shared-rum-api-client-v1.4.2) (2024-01-29)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-rum-api-client",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "Shared modules of the Spacecat Services - Rum API client",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -37,9 +37,7 @@ export const RUM_DEFAULT_PARAMS = {
37
37
  };
38
38
 
39
39
  export const NOT_FOUND_DEFAULT_PARAMS = {
40
- interval: 1,
41
- offset: 0,
42
- limit: 101,
40
+ ...RUM_DEFAULT_PARAMS,
43
41
  checkpoint: 404,
44
42
  };
45
43