@adobe/spacecat-shared-utils 1.11.5 → 1.11.6

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-utils-v1.11.6](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.11.5...@adobe/spacecat-shared-utils-v1.11.6) (2024-02-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * docs for dateAfterDays ([86c39de](https://github.com/adobe/spacecat-shared/commit/86c39dec9d6ce937b37a4a74fefe4973cd51aef6))
7
+
1
8
  # [@adobe/spacecat-shared-utils-v1.11.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.11.4...@adobe/spacecat-shared-utils-v1.11.5) (2024-02-26)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-utils",
3
- "version": "1.11.5",
3
+ "version": "1.11.6",
4
4
  "description": "Shared modules of the Spacecat Services - utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.d.ts CHANGED
@@ -35,7 +35,7 @@ export function toBoolean(value: unknown): boolean;
35
35
 
36
36
  export function isValidUrl(urlString: string): boolean;
37
37
 
38
- export function dateAfterDays(days: string): Date;
38
+ export function dateAfterDays(days: number): Date;
39
39
 
40
40
  export function sqsWrapper(fn: (message: object, context: object) => Promise<Response>):
41
41
  (request: object, context: object) => Promise<Response>;