@adobe/spacecat-shared-utils 1.26.3 → 1.26.5

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,17 @@
1
+ # [@adobe/spacecat-shared-utils-v1.26.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.26.4...@adobe/spacecat-shared-utils-v1.26.5) (2025-01-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * branch protection / npm cache / deps ([#545](https://github.com/adobe/spacecat-shared/issues/545)) ([004de60](https://github.com/adobe/spacecat-shared/commit/004de60b05b5039590f92ed8f7117725f6e4df41))
7
+
8
+ # [@adobe/spacecat-shared-utils-v1.26.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.26.3...@adobe/spacecat-shared-utils-v1.26.4) (2025-01-16)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * missing Response import ([#543](https://github.com/adobe/spacecat-shared/issues/543)) ([6e82332](https://github.com/adobe/spacecat-shared/commit/6e82332fcadb504def553268ff36228d864bcfef))
14
+
1
15
  # [@adobe/spacecat-shared-utils-v1.26.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.26.2...@adobe/spacecat-shared-utils-v1.26.3) (2025-01-15)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-utils",
3
- "version": "1.26.3",
3
+ "version": "1.26.5",
4
4
  "description": "Shared modules of the Spacecat Services - utils",
5
5
  "type": "module",
6
6
  "engines": {
@@ -35,7 +35,7 @@
35
35
  },
36
36
  "devDependencies": {
37
37
  "@adobe/helix-shared-wrap": "2.0.2",
38
- "@adobe/spacecat-shared-data-access": "2.0.0",
38
+ "@adobe/spacecat-shared-data-access": "2.0.2",
39
39
  "chai": "5.1.2",
40
40
  "chai-as-promised": "8.0.1",
41
41
  "husky": "9.1.7",
package/src/sqs.js CHANGED
@@ -10,6 +10,7 @@
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
12
 
13
+ import { Response } from '@adobe/fetch';
13
14
  import { SendMessageCommand, SQSClient } from '@aws-sdk/client-sqs';
14
15
  import AWSXray from 'aws-xray-sdk';
15
16