@adobe/spacecat-shared-utils 1.12.1 → 1.12.2
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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-utils-v1.12.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.12.1...@adobe/spacecat-shared-utils-v1.12.2) (2024-02-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* composeAuditURL docs ([6167551](https://github.com/adobe/spacecat-shared/commit/616755181833bcff8a69031e9523c382ebea21f3))
|
|
7
|
+
|
|
1
8
|
# [@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
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -88,6 +88,6 @@ declare function composeBaseURL(domain: string): string;
|
|
|
88
88
|
/**
|
|
89
89
|
* Composes an audit URL by applying a series of transformations to the given url.
|
|
90
90
|
* @param url - The url to compose the audit URL from.
|
|
91
|
-
* @returns
|
|
91
|
+
* @returns a promise that resolves the composed audit URL.
|
|
92
92
|
*/
|
|
93
|
-
declare
|
|
93
|
+
declare function composeAuditURL(url: string): Promise<string>;
|