@adobe/spacecat-shared-http-utils 1.13.0 → 1.13.1

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-http-utils-v1.13.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.13.0...@adobe/spacecat-shared-http-utils-v1.13.1) (2025-05-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * expose cookie handler ([#750](https://github.com/adobe/spacecat-shared/issues/750)) ([4df4c91](https://github.com/adobe/spacecat-shared/commit/4df4c9117943147fbaf01fa13c6e23d2f330cd3d))
7
+
1
8
  # [@adobe/spacecat-shared-http-utils-v1.13.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-http-utils-v1.12.1...@adobe/spacecat-shared-http-utils-v1.13.0) (2025-05-20)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-http-utils",
3
- "version": "1.13.0",
3
+ "version": "1.13.1",
4
4
  "description": "Shared modules of the Spacecat Services - HTTP Utils",
5
5
  "type": "module",
6
6
  "engines": {
package/src/index.js CHANGED
@@ -16,6 +16,7 @@ import LegacyApiKeyHandler from './auth/handlers/legacy-api-key.js';
16
16
  import AdobeImsHandler from './auth/handlers/ims.js';
17
17
  import ScopedApiKeyHandler from './auth/handlers/scoped-api-key.js';
18
18
  import JwtHandler from './auth/handlers/jwt.js';
19
+ import CookieAuthHandler from './auth/handlers/cookie-auth.js';
19
20
 
20
21
  const HEADER_CONTENT_TYPE = 'content-type';
21
22
  const HEADER_ERROR = 'x-error';
@@ -112,5 +113,5 @@ export { enrichPathInfo } from './enrich-path-info-wrapper.js';
112
113
  export { hashWithSHA256 } from './auth/generate-hash.js';
113
114
 
114
115
  export {
115
- AdobeImsHandler, ScopedApiKeyHandler, LegacyApiKeyHandler, JwtHandler,
116
+ AdobeImsHandler, CookieAuthHandler, ScopedApiKeyHandler, LegacyApiKeyHandler, JwtHandler,
116
117
  };