Skip to content

Commit e455cee

Browse files
fix(deps): update dependency @adobe/spacecat-helix-content-sdk to v1.3.49 (#654)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@adobe/spacecat-helix-content-sdk](https://redirect.github.com/adobe/spacecat-helix-content-sdk) | [`1.3.48` -> `1.3.49`](https://renovatebot.com/diffs/npm/@adobe%2fspacecat-helix-content-sdk/1.3.48/1.3.49) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@adobe%2fspacecat-helix-content-sdk/1.3.49?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@adobe%2fspacecat-helix-content-sdk/1.3.49?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@adobe%2fspacecat-helix-content-sdk/1.3.48/1.3.49?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@adobe%2fspacecat-helix-content-sdk/1.3.48/1.3.49?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>adobe/spacecat-helix-content-sdk (@&#8203;adobe/spacecat-helix-content-sdk)</summary> ### [`v1.3.49`](https://redirect.github.com/adobe/spacecat-helix-content-sdk/compare/a1ca79de5287a52691ad3d5d2e2bc11da7b1251e...bd8753c5935bf8b0f9c5f86a975a729172b824b4) [Compare Source](https://redirect.github.com/adobe/spacecat-helix-content-sdk/compare/a1ca79de5287a52691ad3d5d2e2bc11da7b1251e...bd8753c5935bf8b0f9c5f86a975a729172b824b4) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/adobe/spacecat-shared). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xODUuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE4NS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Alina Rublea <rublea@adobe.com>
1 parent b01919c commit e455cee

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/spacecat-shared-content-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"dependencies": {
3737
"@adobe/helix-universal": "5.0.9",
3838
"@adobe/spacecat-shared-data-access": "2.0.2",
39-
"@adobe/spacecat-helix-content-sdk": "1.3.48",
39+
"@adobe/spacecat-helix-content-sdk": "1.3.49",
4040
"@adobe/spacecat-shared-utils": "1.26.4",
4141
"graph-data-structure": "4.4.0"
4242
},

packages/spacecat-shared-content-client/src/clients/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ export class ContentClient {
108108
* Updates the broken internal links for the given page path.
109109
*
110110
* @param {string} path The path to the page.
111-
* @param {Array<{ from: string, to: string }>} brokenLinks The array of broken link objects to
111+
* @param { from: string, to: string } brokenLink The broken link is the object to
112112
* update.
113-
* @returns {Promise<void>} A promise that resolves when the broken links have been updated.
113+
* @returns {Promise<void>} A promise that resolves when the broken link has been updated.
114114
* @throws {Error} If the path is not a string, empty or does not start with a "/"
115-
* @throws {Error} If the brokenLinks array is not valid or if there is an issue updating the
115+
* @throws {Error} If the brokenLink object is not valid or if there is an issue updating the
116116
* links.
117117
*/
118-
updateBrokenInternalLinks(path: string, brokenLinks: Array<{ from: string, to: string }>):
118+
updateBrokenInternalLink(path: string, brokenLink: { from: string, to: string }):
119119
Promise<void>;
120120
}

0 commit comments

Comments
 (0)