@adobe/spacecat-shared-utils 1.12.0 → 1.12.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 +7 -0
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-utils-v1.12.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.12.0...@adobe/spacecat-shared-utils-v1.12.1) (2024-02-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* composeAuditUrl docs ([e0b8db0](https://github.com/adobe/spacecat-shared/commit/e0b8db0b147f997e4a424c344474d0ddbf64fa14))
|
|
7
|
+
|
|
1
8
|
# [@adobe/spacecat-shared-utils-v1.12.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.11.6...@adobe/spacecat-shared-utils-v1.12.0) (2024-02-27)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -90,4 +90,4 @@ declare function composeBaseURL(domain: string): string;
|
|
|
90
90
|
* @param url - The url to compose the audit URL from.
|
|
91
91
|
* @returns The composed audit URL.
|
|
92
92
|
*/
|
|
93
|
-
declare function composeAuditURL(url: string): string;
|
|
93
|
+
declare async function composeAuditURL(url: string): string;
|